[Python-checkins] r66291 - in sandbox/trunk/ttk-gsoc/src: 2.x/test/test_extensions.py 3.x/test/test_extensions.py

guilherme.polo python-checkins at python.org
Sun Sep 7 14:41:54 CEST 2008


Author: guilherme.polo
Date: Sun Sep  7 14:41:54 2008
New Revision: 66291

Log:
Renamed test_range to test_horizontal_range

Modified:
   sandbox/trunk/ttk-gsoc/src/2.x/test/test_extensions.py
   sandbox/trunk/ttk-gsoc/src/3.x/test/test_extensions.py

Modified: sandbox/trunk/ttk-gsoc/src/2.x/test/test_extensions.py
==============================================================================
--- sandbox/trunk/ttk-gsoc/src/2.x/test/test_extensions.py	(original)
+++ sandbox/trunk/ttk-gsoc/src/2.x/test/test_extensions.py	Sun Sep  7 14:41:54 2008
@@ -93,7 +93,7 @@
         self.failUnlessRaises(Tkinter.TclError, ttk.LabeledScale, a='b')
 
 
-    def test_range(self):
+    def test_horizontal_range(self):
         lscale = ttk.LabeledScale(from_=0, to=10)
         lscale.pack()
         lscale.wait_visibility()

Modified: sandbox/trunk/ttk-gsoc/src/3.x/test/test_extensions.py
==============================================================================
--- sandbox/trunk/ttk-gsoc/src/3.x/test/test_extensions.py	(original)
+++ sandbox/trunk/ttk-gsoc/src/3.x/test/test_extensions.py	Sun Sep  7 14:41:54 2008
@@ -93,7 +93,7 @@
         self.failUnlessRaises(tkinter.TclError, ttk.LabeledScale, a='b')
 
 
-    def test_range(self):
+    def test_horizontal_range(self):
         lscale = ttk.LabeledScale(from_=0, to=10)
         lscale.pack()
         lscale.wait_visibility()


More information about the Python-checkins mailing list