diff options
author | Diego Crespo Quinta <diegocrespodcq98@gmail.com> | 2020-12-01 23:43:59 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-12-02 09:48:13 +0100 |
commit | 5b42e34b59ace4379905fca489408726544ed6f9 (patch) | |
tree | 48a6f579106782b72e951d666752897fa20a797e | |
parent | aeb53bd3512a2b7878c66334b2e36b6f89befdfc (diff) |
#915 Fix POST /setup test
Add new type field to json.
-rw-r--r-- | tests/units/test_0018_post_setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/units/test_0018_post_setup.py b/tests/units/test_0018_post_setup.py index 16fc1d4..22cc0c6 100644 --- a/tests/units/test_0018_post_setup.py +++ b/tests/units/test_0018_post_setup.py @@ -7,6 +7,7 @@ class TestPostSetupMethods(unittest.TestCase): self.url = 'http://localhost:8888/setup' self.headers = {'Authorization' : '07b3bfe728954619b58f0107ad73acc1'} self.json = { 'clients' : [ '192.168.2.1', '192.168.2.2' ], + 'type' : 'GPT', 'disk' : '1', 'cache' : '1', 'cache_size' : '0', |