Skip to content

Commit aaa33b4

Browse files
committed
Remove print debugging
1 parent 4c247b9 commit aaa33b4

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

tests/unit_tests/service/test_rest_api.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -475,16 +475,13 @@ def test_get_tasks_filters_by_user(
475475
task_ids: list[str],
476476
):
477477

478-
print("Start of test")
479478
mock_runner.run.return_value = [
480479
TrackableTask(task_id="foo", task=Task(name="f1", metadata={"user": "jd1"})),
481480
TrackableTask(task_id="bar", task=Task(name="f2", metadata={"user": "jd2"})),
482481
]
483-
print(f"in test: {mock_opa_client=}")
484482
mock_opa_client.admin.return_value = admin
485483
client_with_opa.headers["Authorization"] = f"Bearer {access_token}"
486484
tasks = client_with_opa.get("/tasks").json().get("tasks")
487-
print(tasks)
488485

489486
assert [t["task_id"] for t in tasks] == task_ids
490487

0 commit comments

Comments
 (0)