diff options
| -rw-r--r-- | wrappers/python/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wrappers/python/tests.py b/wrappers/python/tests.py index 4e45fbc..d3caa38 100644 --- a/wrappers/python/tests.py +++ b/wrappers/python/tests.py @@ -18,7 +18,7 @@ from selenium_eduvpn import login_eduvpn class ConfigTests(unittest.TestCase): def testConfig(self): - _eduvpn = eduvpn.EduVPN("org.eduvpn.app.linux", "testconfigs") + _eduvpn = eduvpn.EduVPN("org.eduvpn.app.linux", "testconfigs", "en") # This can throw an exception _eduvpn.register() @@ -37,7 +37,7 @@ class ConfigTests(unittest.TestCase): _eduvpn.deregister() def testDoubleRegister(self): - _eduvpn = eduvpn.EduVPN("org.eduvpn.app.linux", "testconfigs") + _eduvpn = eduvpn.EduVPN("org.eduvpn.app.linux", "testconfigs", "en") # This can throw an exception _eduvpn.register() # This should throw |
