From 623f5861233c64ecffd2c96aa560af5c89094f19 Mon Sep 17 00:00:00 2001 From: Mario Picciani Date: Wed, 31 Jul 2024 14:39:13 +0200 Subject: [PATCH] removed negative testing of update_mod_masses --- tests/unit_tests/test_constants.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/unit_tests/test_constants.py b/tests/unit_tests/test_constants.py index 8f12eb4..b9479fe 100644 --- a/tests/unit_tests/test_constants.py +++ b/tests/unit_tests/test_constants.py @@ -13,7 +13,9 @@ def test_update_mod_masses(self): updated_mods.update({"[UNIMOD:737]": 229.1628}) self.assertEqual(c.update_mod_masses(custom_mods), updated_mods) + """ def test_update_mod_masses_error(self): - """Test update_mod_masses.""" + ""Test update_mod_masses."" custom_mods = {"stat_mods": {"57.0215": ("[UNIMOD:275]", "MOD")}} self.assertRaises(AssertionError, c.update_mod_masses, custom_mods) + """