Skip to content

Commit b946ae4

Browse files
Fix a test causing error when run in Windows
1 parent 7c6a7ff commit b946ae4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

utest/editor/test_z_kweditor_plugin.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -321,14 +321,14 @@ def test_disable(self):
321321
self.plugin.disable()
322322
"""
323323

324-
# This was failing at AppVeyor
325-
@pytest.mark.skipif(sys.platform=='win32', reason="On Windows causes: Windows fatal exception: access violation")
324+
# This was failing at AppVeyor @pytest.mark.skipif(sys.platform=='win32', reason="On Windows causes: Windows fatal exception: access violation")
325+
326326
def test_show(self):
327327
# self.setup_data()
328328
# self.frame.Show()
329329
self.app.tree.select_controller_node(self.test_case)
330330
show = self.frame.Children
331-
print(f"DEBUG: test_show is children={[n.Name for n in show]}")
331+
# Causes error print(f"DEBUG: test_show is children={[n.Name for n in show]}")
332332
tabs = self._grid.kweditor.GetParent().GetName()
333333
print(f"DEBUG: test_show Parent Name={tabs}")
334334
self._grid.kweditor.SetFocus()

0 commit comments

Comments
 (0)