From 2ce1645016349312a7565a102d81bfc69349ce98 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 1 Jun 2013 20:19:02 +0000 Subject: [PATCH] Rename script used by test_process... ...so it is less likely to be picked up by auto-testers as a unittest. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- unittests/{process_test.py => process_script.py} | 0 unittests/test_process.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename unittests/{process_test.py => process_script.py} (100%) diff --git a/unittests/process_test.py b/unittests/process_script.py similarity index 100% rename from unittests/process_test.py rename to unittests/process_script.py diff --git a/unittests/test_process.py b/unittests/test_process.py index bde0dba0..c68b0833 100644 --- a/unittests/test_process.py +++ b/unittests/test_process.py @@ -3,7 +3,7 @@ import wtc import wx import sys, os -testscript = os.path.join(os.path.dirname(__file__), 'process_test.py') +testscript = os.path.join(os.path.dirname(__file__), 'process_script.py') #---------------------------------------------------------------------------