From cb65e2fa8fc05682e06c26a31b8631e2c974849e Mon Sep 17 00:00:00 2001 From: kohlhaasrebecca <rebecca.kohlhaas@outlook.com> Date: Wed, 23 Oct 2024 13:36:51 +0200 Subject: [PATCH] Small fix for PostProcessing test --- tests/test_PostProcessing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_PostProcessing.py b/tests/test_PostProcessing.py index 5f63962be..a57e8c085 100644 --- a/tests/test_PostProcessing.py +++ b/tests/test_PostProcessing.py @@ -168,7 +168,7 @@ def test_plot_metamodel_3d_nopce(basic_engine) -> None: post = PostProcessing(engine) with pytest.raises(AttributeError) as excinfo: post.plot_metamodel_3d() - assert str(excinfo.value) == 'This evaluation only support PCE-type models!' + assert str(excinfo.value) == 'This function is only applicable if the MetaModel input dimension is 2.' #%% _get_sample -- GitLab