From 8ec88e837f1d7d503ae5466ec08e401991d7360e Mon Sep 17 00:00:00 2001 From: iamashwin99 <ashwin-kumar.karnad@mpsd.mpg.de> Date: Wed, 28 Jun 2023 14:41:39 +0200 Subject: [PATCH] test exit40 as the code for uninitialised folder --- tests/test_mpsd_software.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_mpsd_software.py b/tests/test_mpsd_software.py index c7bc12c..1d2a26e 100644 --- a/tests/test_mpsd_software.py +++ b/tests/test_mpsd_software.py @@ -542,11 +542,11 @@ def test_initialize_environment(tmp_path): def test_get_root_dir(tmp_path): """Test that the root directory is correct.""" with mod.os_chdir(tmp_path): - # test that function exists with error 1 if root dir doesn't exist + # test that function exists with error 40 if root dir doesn't exist with pytest.raises(SystemExit) as pytest_wrapped_e: mod.get_root_dir() assert pytest_wrapped_e.type == SystemExit - assert pytest_wrapped_e.value.code == 1 + assert pytest_wrapped_e.value.code == 40 # test that initialize_environment creates the root dir mod.initialize_environment(tmp_path) -- GitLab