diff --git a/contributing.md b/contributing.md index d2b2641..a15ae38 100644 --- a/contributing.md +++ b/contributing.md @@ -32,7 +32,7 @@ I use [pytest](https://docs.pytest.org/en/7.4.x/contents.html), [Coverage](https ## Creating new tests -Normal Unit tests that do not connect to the QBO API should be located under `test/unit` Test that connect to QBO API should go under `tests/integration`. Inheriting from `QuickbooksTestCase` will automatically setup `self.qb_client` to use when connecting to QBO. +Normal Unit tests that do not connect to the QBO API should be located under `test/unit`. Tests that connect to QBO API should go under `tests/integration`. Inheriting from `QuickbooksTestCase` will automatically setup `self.qb_client` to use when connecting to QBO. Example: ```