From 6ee80f89f5760f85988ca29811250d5bb77861d9 Mon Sep 17 00:00:00 2001 From: Roy Willy Haug <5484176+roywilly@users.noreply.github.com> Date: Tue, 17 Oct 2023 14:01:44 +0200 Subject: [PATCH] Update test_explorer.py --- tests/test_explorer.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/test_explorer.py b/tests/test_explorer.py index 65e6a711..14284b09 100644 --- a/tests/test_explorer.py +++ b/tests/test_explorer.py @@ -49,12 +49,7 @@ def fixture_seismic_case_uuid() -> str: @pytest.fixture(name="explorer") def fixture_explorer(token: str) -> Explorer: """Returns explorer""" - print("TKN:", token) - print("TKN2:", len(token)) - print("TKN3:", token[0:9]) - sumo = Explorer("dev", token=token) - print(sumo.cases[0].name) - return sumo + return Explorer("dev", token=token) @pytest.fixture(name="test_case")