Chris McDonough 17 vuotta sitten
vanhempi
commit
b0b3460a99
1 muutettua tiedostoa jossa 0 lisäystä ja 4 poistoa
  1. 0 4
      src/supervisor/tests/test_datatypes.py

+ 0 - 4
src/supervisor/tests/test_datatypes.py

@@ -40,10 +40,6 @@ class DatatypesTest(unittest.TestCase):
         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'])