From 2bdccc50f511e65874344b81bedd008c4ec7df5d Mon Sep 17 00:00:00 2001 From: Lewis Blake Date: Wed, 18 Sep 2024 11:18:55 +0200 Subject: [PATCH] fix test with setup_classes string comparision --- tests/aeroval/test_experiment_output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/aeroval/test_experiment_output.py b/tests/aeroval/test_experiment_output.py index cd78d157e..edf573afc 100644 --- a/tests/aeroval/test_experiment_output.py +++ b/tests/aeroval/test_experiment_output.py @@ -113,7 +113,7 @@ def test_ExperimentOutput(): def test_ExperimentOutput_error(): with pytest.raises(ValueError) as e: ExperimentOutput(None) - assert str(e.value) == "need instance of " + assert str(e.value) == "need instance of " def test_ExperimentOutput_exp_id(dummy_expout: ExperimentOutput):