Mercurial > public > mercurial-scm > python-hglib
diff tests/test-manifest.py @ 143:4359cabcb0cc
hglib: move string literals in the test code to util.b() (issue4520)
author | Brett Cannon <brett@python.org> |
---|---|
date | Mon, 09 Mar 2015 18:26:25 -0400 |
parents | e89dd99638ce |
children | c1b966866ed7 |
line wrap: on
line diff
--- a/tests/test-manifest.py Sun Mar 08 13:08:37 2015 -0400 +++ b/tests/test-manifest.py Mon Mar 09 18:26:25 2015 -0400 @@ -1,24 +1,25 @@ import common, hglib, os, stat +from hglib.util import b class test_manifest(common.basetest): def test_basic(self): self.append('a', 'a') - files = ['a'] - manifest = [('047b75c6d7a3ef6a2243bd0e99f94f6ea6683597', '644', False, - False, 'a')] + files = [b('a')] + manifest = [(b('047b75c6d7a3ef6a2243bd0e99f94f6ea6683597'), b('644'), + False, False, b('a'))] if os.name == 'posix': self.append('b', 'b') os.chmod('b', os.stat('b')[0] | stat.S_IEXEC) os.symlink('b', 'c') - files.extend(['b', 'c']) - manifest.extend([('62452855512f5b81522aa3895892760bb8da9f3f', '755', - True, False, 'b'), - ('62452855512f5b81522aa3895892760bb8da9f3f', '644', - False, True, 'c')]) + files.extend([b('b'), b('c')]) + manifest.extend([(b('62452855512f5b81522aa3895892760bb8da9f3f'), + b('755'), True, False, b('b')), + (b('62452855512f5b81522aa3895892760bb8da9f3f'), + b('644'), False, True, b('c'))]) - self.client.commit('first', addremove=True) + self.client.commit(b('first'), addremove=True) self.assertEquals(list(self.client.manifest(all=True)), files)