From 4e9d2a5e186f672fb0190271ec5b4b6c4832a7af Mon Sep 17 00:00:00 2001 From: Ebag333 Date: Sun, 26 Feb 2017 08:55:29 -0800 Subject: [PATCH] Rename file so pytest doesn't think it's a test. --- tests/test_locale/{file_dialog_test.py => file_dialog.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/test_locale/{file_dialog_test.py => file_dialog.py} (97%) diff --git a/tests/test_locale/file_dialog_test.py b/tests/test_locale/file_dialog.py similarity index 97% rename from tests/test_locale/file_dialog_test.py rename to tests/test_locale/file_dialog.py index 2394c9be4..ce12af517 100644 --- a/tests/test_locale/file_dialog_test.py +++ b/tests/test_locale/file_dialog.py @@ -7,7 +7,7 @@ import sys class MyForm(wx.Frame): # ---------------------------------------------------------------------- def __init__(self): - wx.Frame.__init__(self, None, wx.ID_ANY, "Tutorial", size=(500, 500)) + wx.Frame.__init__(self, None, wx.ID_ANY, "CTRL-O to open, CTRL-S to save", size=(500, 500)) # Add a panel so it looks the correct on all platforms panel = wx.Panel(self, wx.ID_ANY)