Skip to content

Commit

Permalink
fix test with setup_classes string comparision
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisblake committed Sep 18, 2024
1 parent 8c16602 commit 2bdccc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/aeroval/test_experiment_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <class 'pyaerocom.aeroval.setupclasses.EvalSetup'>"
assert str(e.value) == "need instance of <class 'pyaerocom.aeroval.setup_classes.EvalSetup'>"


def test_ExperimentOutput_exp_id(dummy_expout: ExperimentOutput):
Expand Down

0 comments on commit 2bdccc5

Please sign in to comment.