diff --git a/test_mpsd-software.py b/test_mpsd-software.py
index bdb767577585200633c2a115eb824685c0a0d3c9..befc3af3269c7f00a6412e61b9696f31adacf19b 100644
--- a/test_mpsd-software.py
+++ b/test_mpsd-software.py
@@ -493,7 +493,7 @@ def test_remove_environment(tmp_path):
     # test removal  without arguments (should sys.exit(1))
     create_fake_environment(tmp_path, mpsd_release)
     with pytest.raises(SystemExit):
-        mod.remove_environment(mpsd_release, tmp_path, force=True)
+        mod.remove_environment(mpsd_release, tmp_path, force_remove=True)
 
     # test removal of the complete environment
     mod.remove_environment(mpsd_release, tmp_path, ["ALL"])
@@ -504,6 +504,7 @@ def test_remove_environment(tmp_path):
     assert logs_folder.exists()
 
     # test removal of a single toolchain
+    # done in test_install_environment_zlib
 
 
 def test_interface(tmp_path):