diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-09-14 13:56:49 +0200 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-09-14 13:56:49 +0200 |
| commit | da83f54606c9c1d2786d87074ee17ed972d2e1b2 (patch) | |
| tree | 0be57934f9f467c87576abb0b457fb54b2d25d52 /wrappers/python/tests.py | |
| parent | fd34e72da8c604517050ada7e883ba982829d985 (diff) | |
Refactor: Return without json
Diffstat (limited to 'wrappers/python/tests.py')
| -rw-r--r-- | wrappers/python/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/python/tests.py b/wrappers/python/tests.py index 60d3cce..679eda0 100644 --- a/wrappers/python/tests.py +++ b/wrappers/python/tests.py @@ -24,7 +24,7 @@ class ConfigTests(unittest.TestCase): @_eduvpn.event.on(State.OAUTH_STARTED, StateType.Enter) def oauth_initialized(old_state, url_json): - login_eduvpn(json.loads(url_json)) + login_eduvpn(url_json) server_uri = os.getenv("SERVER_URI") if not server_uri: |
