From 3dbf283753a3cb51e227cfec51b5913c011c9ed0 Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Thu, 6 Oct 2022 13:27:12 +0200 Subject: Python Tests: Add missing language to register --- wrappers/python/tests.py | 4 ++-- 1 file 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 -- cgit v1.2.3