diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fixtures/test.gitconfig | 4 | ||||
-rw-r--r-- | tests/test_git_superproject.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/fixtures/test.gitconfig b/tests/fixtures/test.gitconfig index d69e162c..90afff04 100644 --- a/tests/fixtures/test.gitconfig +++ b/tests/fixtures/test.gitconfig | |||
@@ -12,10 +12,10 @@ | |||
12 | intm = 10m | 12 | intm = 10m |
13 | intg = 10g | 13 | intg = 10g |
14 | [repo "syncstate.main"] | 14 | [repo "syncstate.main"] |
15 | synctime = 2021-08-11T17:54:14.530286Z | 15 | synctime = 2021-08-13T18:37:43.928600Z |
16 | version = 1 | 16 | version = 1 |
17 | [repo "syncstate.sys"] | 17 | [repo "syncstate.sys"] |
18 | argv = ['/usr/bin/pytest-3', '-v'] | 18 | argv = ['/usr/bin/pytest-3'] |
19 | [repo "syncstate.superproject"] | 19 | [repo "syncstate.superproject"] |
20 | test = false | 20 | test = false |
21 | [repo "syncstate.options"] | 21 | [repo "syncstate.options"] |
diff --git a/tests/test_git_superproject.py b/tests/test_git_superproject.py index 6ff81843..e9b824d6 100644 --- a/tests/test_git_superproject.py +++ b/tests/test_git_superproject.py | |||
@@ -203,7 +203,7 @@ class SuperprojectTestCase(unittest.TestCase): | |||
203 | project.SetRevisionId('ABCDEF') | 203 | project.SetRevisionId('ABCDEF') |
204 | # Create temporary directory so that it can write the file. | 204 | # Create temporary directory so that it can write the file. |
205 | os.mkdir(self._superproject._superproject_path) | 205 | os.mkdir(self._superproject._superproject_path) |
206 | manifest_path = self._superproject._WriteManfiestFile() | 206 | manifest_path = self._superproject._WriteManifestFile() |
207 | self.assertIsNotNone(manifest_path) | 207 | self.assertIsNotNone(manifest_path) |
208 | with open(manifest_path, 'r') as fp: | 208 | with open(manifest_path, 'r') as fp: |
209 | manifest_xml_data = fp.read() | 209 | manifest_xml_data = fp.read() |