Browse Source

[1790] Use a simpler constructor

Mukund Sivaraman 13 years ago
parent
commit
2867539194
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/bin/xfrin/tests/xfrin_test.py

+ 2 - 2
src/bin/xfrin/tests/xfrin_test.py

@@ -2737,10 +2737,10 @@ class TestMain(unittest.TestCase):
         main(MockXfrin, False)
 
 class TestXfrinProcessMockCC:
-    def __init__(self, config = []):
+    def __init__(self):
         self.get_called = False
         self.get_called_correctly = False
-        self.config = config
+        self.config = []
 
     def get_remote_config_value(self, module, identifier):
         self.get_called = True