diff options
-rw-r--r-- | tests/test_project.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_project.py b/tests/test_project.py index 7d07b705..7ab44984 100644 --- a/tests/test_project.py +++ b/tests/test_project.py | |||
@@ -480,13 +480,13 @@ class ManifestPropertiesFetchedCorrectly(unittest.TestCase): | |||
480 | self.assertFalse(fakeproj.partial_clone) | 480 | self.assertFalse(fakeproj.partial_clone) |
481 | 481 | ||
482 | fakeproj.config.SetString('repo.depth', '48') | 482 | fakeproj.config.SetString('repo.depth', '48') |
483 | self.assertEquals(fakeproj.depth, '48') | 483 | self.assertEqual(fakeproj.depth, '48') |
484 | 484 | ||
485 | fakeproj.config.SetString('repo.clonefilter', 'blob:limit=10M') | 485 | fakeproj.config.SetString('repo.clonefilter', 'blob:limit=10M') |
486 | self.assertEquals(fakeproj.clone_filter, 'blob:limit=10M') | 486 | self.assertEqual(fakeproj.clone_filter, 'blob:limit=10M') |
487 | 487 | ||
488 | fakeproj.config.SetString('repo.partialcloneexclude', 'third_party/big_repo') | 488 | fakeproj.config.SetString('repo.partialcloneexclude', 'third_party/big_repo') |
489 | self.assertEquals(fakeproj.partial_clone_exclude, 'third_party/big_repo') | 489 | self.assertEqual(fakeproj.partial_clone_exclude, 'third_party/big_repo') |
490 | 490 | ||
491 | fakeproj.config.SetString('manifest.platform', 'auto') | 491 | fakeproj.config.SetString('manifest.platform', 'auto') |
492 | self.assertEquals(fakeproj.manifest_platform, 'auto') | 492 | self.assertEqual(fakeproj.manifest_platform, 'auto') |