[Supervisor-checkins] r812 - supervisor/trunk/src/supervisor/tests

Chris McDonough chrism at agendaless.com
Wed Aug 27 00:02:36 EDT 2008


Author: Chris McDonough <chrism at agendaless.com>
Date: Wed Aug 27 00:02:36 2008
New Revision: 812

Log:
Dupe test.


Modified:
   supervisor/trunk/src/supervisor/tests/test_datatypes.py

Modified: supervisor/trunk/src/supervisor/tests/test_datatypes.py
==============================================================================
--- supervisor/trunk/src/supervisor/tests/test_datatypes.py	(original)
+++ supervisor/trunk/src/supervisor/tests/test_datatypes.py	Wed Aug 27 00:02:36 2008
@@ -40,10 +40,6 @@
         actual = datatypes.list_of_strings('foo,bar')
         self.assertEqual(actual, ['foo', 'bar'])
 
-    def test_list_of_strings_returns_list_of_strings_by_comma_split(self):
-        actual = datatypes.list_of_strings('foo,bar')
-        self.assertEqual(actual, ['foo', 'bar'])
-
     def test_list_of_strings_returns_strings_with_whitespace_stripped(self):
         actual = datatypes.list_of_strings(' foo , bar ')
         self.assertEqual(actual, ['foo', 'bar'])


More information about the Supervisor-checkins mailing list