Skip to content

Commit

Permalink
tests: add slide_etl test back
Browse files Browse the repository at this point in the history
  • Loading branch information
raylim committed Nov 15, 2023
1 parent 9d89c70 commit 7232cac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/luna/pathology/cli/test_slide_etl.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def test_slide_etl(tmp_path, dask_client):
print(df)

assert df.loc["123", "slide_size"] == 1938955
# assert df.loc["123", "properties.aperio.AppMag"] == 20
assert df.loc["123", "properties.aperio.AppMag"] == 20
assert df.loc["123", "url"] == "file://" + os.path.join(tmp_path, "123.svs")

assert os.path.exists(os.path.join(tmp_path, "123.svs"))
Expand Down Expand Up @@ -95,7 +95,7 @@ def test_slide_etl_subset(tmp_path, dask_client):
print(df)

assert df.loc["123", "slide_size"] == 1938955
# assert df.loc["123", "properties.aperio.AppMag"] == 20
assert df.loc["123", "properties.aperio.AppMag"] == 20
assert df.loc["123", "url"] == "file://" + os.path.join(tmp_path, "123.svs")

assert os.path.exists(os.path.join(tmp_path, "123.svs"))
Expand Down

0 comments on commit 7232cac

Please sign in to comment.