From 1158dbc57b09c9e4a924722f1c701c360d51315e Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Sun, 7 Jul 2024 08:47:04 -0700 Subject: [PATCH] Remove `pytest.skip("BAKEIN_BREAK: ...")` in test_class_sh_disowning_mi.py (tests pass without any further changes). --- tests/test_class_sh_disowning_mi.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_class_sh_disowning_mi.py b/tests/test_class_sh_disowning_mi.py index b58b7e976..4a4beecce 100644 --- a/tests/test_class_sh_disowning_mi.py +++ b/tests/test_class_sh_disowning_mi.py @@ -40,7 +40,6 @@ def test_disown_c0(var_to_disown): assert c0.get() == 1020 b = c0.b() m.disown_b(locals()[var_to_disown]) - pytest.skip("BAKEIN_BREAK: AssertionError") assert is_disowned(c0.get) assert is_disowned(b.get) @@ -51,7 +50,6 @@ def test_disown_c1(var_to_disown): assert c1.get() == 1021 b = c1.b() m.disown_b(locals()[var_to_disown]) - pytest.skip("BAKEIN_BREAK: AssertionError") assert is_disowned(c1.get) assert is_disowned(b.get) @@ -64,7 +62,6 @@ def test_disown_d(var_to_disown): c0 = d.c0() c1 = d.c1() m.disown_b(locals()[var_to_disown]) - pytest.skip("BAKEIN_BREAK: AssertionError") assert is_disowned(d.get) assert is_disowned(c1.get) assert is_disowned(c0.get)