From 7232cac45e78e4e75e9c6bd0c98360b5849957c2 Mon Sep 17 00:00:00 2001 From: Raymond Lim Date: Wed, 15 Nov 2023 12:54:34 -0500 Subject: [PATCH] tests: add slide_etl test back --- tests/luna/pathology/cli/test_slide_etl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/luna/pathology/cli/test_slide_etl.py b/tests/luna/pathology/cli/test_slide_etl.py index f119d3c4..ffe6dc33 100644 --- a/tests/luna/pathology/cli/test_slide_etl.py +++ b/tests/luna/pathology/cli/test_slide_etl.py @@ -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")) @@ -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"))