summaryrefslogtreecommitdiffstats
path: root/tests/units/test_0003_post_wol.py
diff options
context:
space:
mode:
authorRoberto Hueso Gómez <rhueso@soleta.eu>2019-09-18 12:59:16 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2019-09-18 17:40:41 +0200
commit55edb404b754c3dd817289e35d67505a476e7dbf (patch)
tree38bf68ba4803dfcea163a25901ced19dac51f858 /tests/units/test_0003_post_wol.py
parent72b6c26a49c61154af268383e42d3a0e351e1035 (diff)
#915: Fix incorrect method and code in invalid GET requests
Some tests should perform GET requests however they incorrectly use POST. Return codes for these tests have also been fixed.
Diffstat (limited to 'tests/units/test_0003_post_wol.py')
-rw-r--r--tests/units/test_0003_post_wol.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/test_0003_post_wol.py b/tests/units/test_0003_post_wol.py
index a3750f2..e997aff 100644
--- a/tests/units/test_0003_post_wol.py
+++ b/tests/units/test_0003_post_wol.py
@@ -14,8 +14,8 @@ class TestPostWolMethods(unittest.TestCase):
self.assertEqual(returned.status_code, 200)
def test_get(self):
- returned = requests.post(self.url, headers=self.headers)
- self.assertEqual(returned.status_code, 404)
+ returned = requests.get(self.url, headers=self.headers)
+ self.assertEqual(returned.status_code, 405)
if __name__ == '__main__':
unittest.main()