From ae5e56a1d475aed42cae75db2b7b92153a9768de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20M=C3=BCller?= Date: Fri, 22 Mar 2024 09:15:02 +0100 Subject: [PATCH] tests: fix tests --- tests/test_gui_export_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_gui_export_data.py b/tests/test_gui_export_data.py index a9c807e..9c6f671 100644 --- a/tests/test_gui_export_data.py +++ b/tests/test_gui_export_data.py @@ -163,9 +163,9 @@ def test_export_datasets_rtdc_logs(qtbot): with dclab.new_dataset(exported[0]) as ds: assert len(ds) == 3 assert len(ds.logs) == 5 - assert "so2exp_src_cytoshot-acquisition" in ds.logs + assert "src_cytoshot-acquisition" in ds.logs assert np.allclose( - ds.tables["so2exp_src_cytoshot_monitor"]["brightness"][0], + ds.tables["src_cytoshot_monitor"]["brightness"][0], 146.22099383, atol=0, rtol=1e-10)