diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2019-07-09 11:42:51 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2019-07-15 09:47:38 +0200 |
commit | 5907a07fcc6faa08272bdf0c26edc294712e2a25 (patch) | |
tree | efd9ca758a7201c74d686389eebc143e0ab9992a | |
parent | bf17dde05a16cfbec1ff96d140ea9fe68b8cdb11 (diff) |
#915 tests correct command, /session
This should test /shell/run instead of /session
-rw-r--r-- | admin/Sources/Services/ogAdmServer/tests/units/test_0006_post_session.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/Sources/Services/ogAdmServer/tests/units/test_0006_post_session.py b/admin/Sources/Services/ogAdmServer/tests/units/test_0006_post_session.py index d2351796..0b733d9a 100644 --- a/admin/Sources/Services/ogAdmServer/tests/units/test_0006_post_session.py +++ b/admin/Sources/Services/ogAdmServer/tests/units/test_0006_post_session.py @@ -4,7 +4,7 @@ import unittest class TestPostSessionMethods(unittest.TestCase): def setUp(self): - self.url = 'http://localhost:8888/shell/run' + self.url = 'http://localhost:8888/session' self.headers = {'Authorization' : '07b3bfe728954619b58f0107ad73acc1'} self.json = { 'clients' : [ '192.168.2.1', '192.168.2.2' ], 'disk' : '0', 'partition' : '1'} |