Skip to content

Commit

Permalink
fix: Fix base URL assignment in test_break function
Browse files Browse the repository at this point in the history
  • Loading branch information
jjjermiah committed Feb 18, 2024
1 parent 4bf9d3b commit fab5dcc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_tcga_collections_separate.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def tcga_collections(nbia_client):


def test_break(nbia_client_tobreak):
assert nbia_client.base_url == NBIA_ENDPOINTS.NBIA
nbia_client.base_url = NBIA_ENDPOINTS.NLST
assert nbia_client.base_url == NBIA_ENDPOINTS.NLST
assert nbia_client_tobreak.base_url == NBIA_ENDPOINTS.NBIA
nbia_client_tobreak.base_url = NBIA_ENDPOINTS.NLST
assert nbia_client_tobreak.base_url == NBIA_ENDPOINTS.NLST


def test_getModalityValues(nbia_client, tcga_collections):
Expand Down

0 comments on commit fab5dcc

Please sign in to comment.