From e978d93cd180c8aedc1f44c2df1ca804d4f84de1 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Sat, 19 Apr 2025 13:50:00 -0700 Subject: [PATCH] =?UTF-8?q?Rename=20test=5Fweak=5Fptr=5Fbase=20=E2=86=92?= =?UTF-8?q?=20test=5Fweak=5Fptr=5Fowner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_class_sh_trampoline_weak_ptr.py | 2 +- tests/test_class_sp_trampoline_weak_ptr.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_class_sh_trampoline_weak_ptr.py b/tests/test_class_sh_trampoline_weak_ptr.py index c83b7fcfd..a60a2e7b4 100644 --- a/tests/test_class_sh_trampoline_weak_ptr.py +++ b/tests/test_class_sh_trampoline_weak_ptr.py @@ -12,7 +12,7 @@ class PyDrvd(m.VirtBase): @pytest.mark.parametrize(("vtype", "expected_code"), [(m.VirtBase, 100), (PyDrvd, 200)]) -def test_weak_ptr_base(vtype, expected_code): +def test_weak_ptr_owner(vtype, expected_code): wpo = m.WpOwner() assert wpo.get_code() == -999 diff --git a/tests/test_class_sp_trampoline_weak_ptr.py b/tests/test_class_sp_trampoline_weak_ptr.py index 43db1b7d7..3782cd8aa 100644 --- a/tests/test_class_sp_trampoline_weak_ptr.py +++ b/tests/test_class_sp_trampoline_weak_ptr.py @@ -12,7 +12,7 @@ class PyDrvd(m.VirtBase): @pytest.mark.parametrize(("vtype", "expected_code"), [(m.VirtBase, 100), (PyDrvd, 200)]) -def test_weak_ptr_base(vtype, expected_code): +def test_weak_ptr_owner(vtype, expected_code): wpo = m.WpOwner() assert wpo.get_code() == -999