Skip to content

Commit

Permalink
test: Refactor temporary directory variable name in test_nbia.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jjjermiah committed Jan 21, 2024
1 parent 573978e commit 3cdeb4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_nbia.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def test_downloadSeries(nbia_client, nbia_collections, nbia_patients):
filePattern = '%PatientID/%Modality/%SeriesNumber-%SeriesInstanceUID/%InstanceNumber.dcm'
# create a temporary directory

tempdir = TemporaryDirectory()
tempdir = tempdir.name
tempdir_ = TemporaryDirectory()
tempdir = tempdir_.name

nbia_client.downloadSeries(
SeriesInstanceUID=seriesList[0]["SeriesInstanceUID"],
Expand Down

0 comments on commit 3cdeb4a

Please sign in to comment.