Compare commits

...

2 Commits

Author SHA1 Message Date
Yannick Jadoul 0db112a1c7
Merge 1992156d6f into ab955f158c 2024-06-13 02:15:49 +00:00
Yannick Jadoul 1992156d6f Revert workaround of test_virtual_functions.py from #2746 2021-01-15 21:12:19 +01:00
1 changed files with 2 additions and 1 deletions

View File

@ -249,7 +249,8 @@ def test_dispatch_issue(msg):
== 'Tried to call pure virtual function "Base::dispatch"'
)
return m.dispatch_issue_go(PyClass1())
p = PyClass1()
return m.dispatch_issue_go(p)
b = PyClass2()
assert m.dispatch_issue_go(b) == "Yay.."