Skip to content

Commit

Permalink
BUG: Fix a copy-paste bug in Python unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
dzenanz committed May 22, 2023
1 parent aeb838b commit 6628586
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wrapping/test/PythonSpectra1DNormalizeImageFilterTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
print("Running the filter")
result = itk.spectra1_d_normalize_image_filter(input, reference_image=reference)

print(f"Writing resulting image into file: {sys.argv[2]}")
itk.imwrite(result, sys.argv[2], compression=False)
print(f"Writing resulting image into file: {sys.argv[3]}")
itk.imwrite(result, sys.argv[3], compression=False)

print("Test finished")

0 comments on commit 6628586

Please sign in to comment.