summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/units/test_0011_post_hardware.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/test_0011_post_hardware.py b/tests/units/test_0011_post_hardware.py
index 105c029..117f914 100644
--- a/tests/units/test_0011_post_hardware.py
+++ b/tests/units/test_0011_post_hardware.py
@@ -21,7 +21,7 @@ class TestPostHardwareMethods(unittest.TestCase):
self.assertEqual(returned.status_code, 400)
def test_get(self):
- returned = requests.get(self.url, headers=self.headers, json={ "scope": { "id": 6, "type": "computer" }})
+ returned = requests.get(self.url, headers=self.headers, json={"client": ["192.168.56.11"]})
self.assertEqual(returned.status_code, 200)
if __name__ == '__main__':