Skip to content

Commit

Permalink
Fix issue number.
Browse files Browse the repository at this point in the history
  • Loading branch information
corranwebster committed Jan 5, 2024
1 parent a605419 commit e1b462c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions traitsui/tests/editors/test_instance_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def when_opened(tester):
self.assertEqual(obj.inst.value, "Hello")

# A regression test for issue enthought/traitsui#1501
@unittest.skipIf(_is_pyside_661(), "See issue enthought/traitsui#2308")
@unittest.skipIf(_is_pyside_661(), "See issue enthought/traitsui#2038")
def test_propagate_errors(self):
obj = ObjectWithValidatedInstance()
ui_tester = UITester()
Expand All @@ -335,7 +335,7 @@ def test_propagate_errors(self):
self.assertEqual(instance_editor_ui.errors, ui.errors)
self.assertFalse(ok_button.inspect(IsEnabled()))

@unittest.skipIf(_is_pyside_661(), "See issue enthought/traitsui#2308")
@unittest.skipIf(_is_pyside_661(), "See issue enthought/traitsui#2038")
def test_propagate_errors_switch_selection(self):
obj = ObjectWithValidatedList()
ui_tester = UITester()
Expand Down

0 comments on commit e1b462c

Please sign in to comment.