From 110de2892ee5f4af9b4fa76a8452ffd17cc4f033 Mon Sep 17 00:00:00 2001 From: Vipul Cariappa Date: Wed, 11 Dec 2024 12:40:06 +0530 Subject: [PATCH] [test] update tags 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 0d1eff8e..a4dde9f6 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 1014e92b..daf448f7 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"""