浏览代码

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'])