From b94506f33649fd066e4c1ddad17f2e3e87872ce2 Mon Sep 17 00:00:00 2001 From: Draga Doncila Pop <17995243+DragaDoncila@users.noreply.github.com> Date: Sat, 26 Oct 2024 02:48:04 +1100 Subject: [PATCH] Change npe1 plugin used for sample data test (#364) Closes #363 by changing the plugin used in the test to avoid name normalization issues entirely. --- tests/test_fetch.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_fetch.py b/tests/test_fetch.py index 5532cad2..35e5a485 100644 --- a/tests/test_fetch.py +++ b/tests/test_fetch.py @@ -33,10 +33,10 @@ def test_fetch_npe1_manifest_with_writer(): def test_fetch_npe1_manifest_with_sample_data(): - mf = fetch_manifest("napari-pyclesperanto-assistant") - assert mf.name == "napari-pyclesperanto-assistant" + mf = fetch_manifest("napari-kics") + assert mf.name == "napari-kics" assert mf.contributions.sample_data - # Test will eventually fail when napari-pyclesperanto-assistant is updated to npe2 + # Test will eventually fail when napari-kics is updated to npe2 # This is here as a sentinel assert mf.npe1_shim is True