summaryrefslogtreecommitdiffstats
path: root/tests/units
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units')
-rw-r--r--tests/units/test_0002_post_clients.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/units/test_0002_post_clients.py b/tests/units/test_0002_post_clients.py
index b1e60c9..1aae349 100644
--- a/tests/units/test_0002_post_clients.py
+++ b/tests/units/test_0002_post_clients.py
@@ -12,9 +12,5 @@ class TestPostClientsMethods(unittest.TestCase):
returned = requests.post(self.url, headers=self.headers, json=self.json)
self.assertEqual(returned.status_code, 200)
- def test_get(self):
- returned = requests.post(self.url, headers=self.headers)
- self.assertEqual(returned.status_code, 404)
-
if __name__ == '__main__':
unittest.main()