From 4d47b936061cd952ef30040b0acae7c54fadc51a 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 ec75243d2..855e7a6e1 100644 --- a/tests/test_PostProcessing.py +++ b/tests/test_PostProcessing.py @@ -229,7 +229,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