Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,11 @@ def check_dereference(self, result_varname, frame, expr_options):
)
self.assertEqual(method_result.signed, 500, "Got the right result value")

@skipIfWindows # Dynamic type resolution on Windows doesn't work
def test_virtual_dynamic_results(self):
self.do_test_dynamic_results(True)

@skipIfWindows # Dynamic type resolution on Windows doesn't work
def test_non_virtual_dynamic_results(self):
self.do_test_dynamic_results(False)

Expand Down
Loading