From c0f3e38f019c0eee64c29cd9fe250c3fc14e53b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Mart=C3=AD=20Gamboa?= Date: Tue, 21 May 2024 16:00:03 +0200 Subject: [PATCH] Update contributing.md some grammar nits --- contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: ```