diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-10-24 21:45:51 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-10-24 21:48:54 +0200 |
commit | 477e8d13ea32e8a51eed15da7d45d05cba6f845a (patch) | |
tree | 85e5c78aaaabd130527fec3a8c8511273c0fc4d9 /tests | |
parent | 903d47e121a024b6bb621e26ad2b30b2dbffbe4d (diff) | |
download | gemato-477e8d13ea32e8a51eed15da7d45d05cba6f845a.tar.gz |
test_recursiveloader: Fix duplicate test names
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_recursiveloader.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_recursiveloader.py b/tests/test_recursiveloader.py index f18a1e8..8aa924f 100644 --- a/tests/test_recursiveloader.py +++ b/tests/test_recursiveloader.py @@ -164,17 +164,17 @@ DATA test 0 MD5 d41d8cd98f00b204e9800998ecf8427e os.path.join(self.dir, 'Manifest')) m.assert_path_verifies('sub/deeper/test') - def test_verify_optional_path(self): + def test_assert_path_verifies_optional_path(self): m = gemato.recursiveloader.ManifestRecursiveLoader( os.path.join(self.dir, 'Manifest')) m.assert_path_verifies('sub/nonstray') - def test_verify_nonexistent_path(self): + def test_assert_path_verifies_nonexistent_path(self): m = gemato.recursiveloader.ManifestRecursiveLoader( os.path.join(self.dir, 'Manifest')) m.assert_path_verifies('sub/deeper/nonexist') - def test_verify_stray_path(self): + def test_assert_path_verifies_stray_path(self): m = gemato.recursiveloader.ManifestRecursiveLoader( os.path.join(self.dir, 'Manifest')) self.assertRaises(gemato.verify.ManifestMismatch, @@ -438,7 +438,7 @@ AUX test.patch 0 MD5 d41d8cd98f00b204e9800998ecf8427e self.assertEqual(entries['files/test.patch'].path, 'files/test.patch') -class DuplicateFileEntryTest(TempDirTestCase): +class DuplicateDifferentHashSetFileEntryTest(TempDirTestCase): """ Test for specifying the entry for the same file twice, with different hash sets (and both of them mismatched). |