diff options
Diffstat (limited to 'tests/test_git_config.py')
-rw-r--r-- | tests/test_git_config.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_git_config.py b/tests/test_git_config.py index 44ff5974..faf12a2e 100644 --- a/tests/test_git_config.py +++ b/tests/test_git_config.py | |||
@@ -110,9 +110,11 @@ class GitConfigReadOnlyTests(unittest.TestCase): | |||
110 | superproject_logging_data['test'] = False | 110 | superproject_logging_data['test'] = False |
111 | options = type('options', (object,), {})() | 111 | options = type('options', (object,), {})() |
112 | options.verbose = 'true' | 112 | options.verbose = 'true' |
113 | options.mp_update = 'false' | ||
113 | TESTS = ( | 114 | TESTS = ( |
114 | ('superproject.test', 'false'), | 115 | ('superproject.test', 'false'), |
115 | ('options.verbose', 'true'), | 116 | ('options.verbose', 'true'), |
117 | ('options.mpupdate', 'false'), | ||
116 | ('main.version', '1'), | 118 | ('main.version', '1'), |
117 | ) | 119 | ) |
118 | self.config.UpdateSyncAnalysisState(options, superproject_logging_data) | 120 | self.config.UpdateSyncAnalysisState(options, superproject_logging_data) |