diff options
author | Roberto Hueso Gómez <rhueso@soleta.eu> | 2019-09-18 12:55:08 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2019-09-18 17:40:41 +0200 |
commit | 72b6c26a49c61154af268383e42d3a0e351e1035 (patch) | |
tree | f965a7dbf2ebdbbdf8a8af1dd5bcfb8da08a219c /tests/units | |
parent | 741524f59ba8abbd1fb45596097ba60897174b1b (diff) |
#915: Remove duplicated test
This test is already performed in test_0001_get_clients.py
Diffstat (limited to 'tests/units')
-rw-r--r-- | tests/units/test_0002_post_clients.py | 4 |
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() |