소스 검색

Strip trailing whitespace

Mike Naberezny 11 년 전
부모
커밋
7725a1abfd
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      supervisor/tests/test_options.py

+ 4 - 4
supervisor/tests/test_options.py

@@ -83,7 +83,7 @@ class OptionTests(unittest.TestCase):
             long=False,
             short=":",
             )
-        
+
     def test_add_flag_not_None_long_endswith_equal(self):
         cls = self._getTargetClass()
         inst = cls()
@@ -94,7 +94,7 @@ class OptionTests(unittest.TestCase):
             long='=',
             short=False,
             )
-        
+
     def test_add_inconsistent_short_long_options(self):
         cls = self._getTargetClass()
         inst = cls()
@@ -104,7 +104,7 @@ class OptionTests(unittest.TestCase):
             long='=',
             short='abc',
             )
-        
+
     def test_add_short_option_startswith_dash(self):
         cls = self._getTargetClass()
         inst = cls()
@@ -156,7 +156,7 @@ class OptionTests(unittest.TestCase):
             long='abc',
             short=False,
             )
-        
+
     def test_searchpaths(self):
         options = self._makeOptions()
         self.assertEqual(len(options.searchpaths), 5)