From a4100608f70f5605c2e1bd3f12b0f1ee1f375353 Mon Sep 17 00:00:00 2001 From: Vipul Cariappa Date: Wed, 11 Dec 2024 13:07:57 +0530 Subject: [PATCH] [test] update tags (#116) fixed by compiler-research/CppInterOp#385 --- test/test_cpp11features.py | 1 - test/test_crossinheritance.py | 1 - 2 files changed, 2 deletions(-) diff --git a/test/test_cpp11features.py b/test/test_cpp11features.py index 0d1eff8..a4dde9f 100644 --- a/test/test_cpp11features.py +++ b/test/test_cpp11features.py @@ -393,7 +393,6 @@ def test12_stdfunction(self): f = FunctionNS.FNCreateTestStructFunc() assert f(t) == 27 - @mark.xfail def test13_stdhash(self): """Use of std::hash""" diff --git a/test/test_crossinheritance.py b/test/test_crossinheritance.py index 1014e92..daf448f 100644 --- a/test/test_crossinheritance.py +++ b/test/test_crossinheritance.py @@ -477,7 +477,6 @@ class MyPyDerived3(VD.MyClass3): class MyPyDerived4(VD.MyClass4[int]): pass - @mark.xfail def test14_protected_access(self): """Derived classes should have access to protected members"""