Skip to content

Commit 5ad83b1

Browse files
committed
Remove print()
1 parent 16acb27 commit 5ad83b1

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/routers/test_experiments.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,6 @@ def test_required_fields(client, setup_router_db, test_field):
713713
def test_create_experiment_with_new_primary_pubmed_publication(client, setup_router_db, mock_publication_fetch):
714714
mocked_publication = mock_publication_fetch
715715
response_data = create_experiment(client, {"primaryPublicationIdentifiers": [mocked_publication]})
716-
print(response_data)
717716

718717
assert len(response_data["primaryPublicationIdentifiers"]) == 1
719718
assert sorted(response_data["primaryPublicationIdentifiers"][0]) == sorted(
@@ -742,7 +741,6 @@ def test_create_experiment_with_new_primary_pubmed_publication(client, setup_rou
742741
def test_create_experiment_with_new_primary_pubmed_url_publication(client, setup_router_db, mock_publication_fetch):
743742
mocked_publication = mock_publication_fetch
744743
response_data = create_experiment(client, {"primaryPublicationIdentifiers": [mocked_publication]})
745-
print(response_data)
746744

747745
assert len(response_data["primaryPublicationIdentifiers"]) == 1
748746
assert sorted(response_data["primaryPublicationIdentifiers"][0]) == sorted(
@@ -764,7 +762,6 @@ def test_create_experiment_with_new_primary_pubmed_url_publication(client, setup
764762
assert response_data["primaryPublicationIdentifiers"][0]["identifier"] == '37162834'
765763

766764

767-
768765
@pytest.mark.parametrize(
769766
"mock_publication_fetch",
770767
[

0 commit comments

Comments
 (0)