소스 검색

Dupe test.

Chris McDonough 17 년 전
부모
커밋
b0b3460a99
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  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'])