Submitter | phabricator |
---|---|
Date | April 13, 2018, 10:22 p.m. |
Message ID | <d79f9125a589f84ac040662f9f301dbe@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/30940/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/tests/test-status-inprocess.py b/tests/test-status-inprocess.py --- a/tests/test-status-inprocess.py +++ b/tests/test-status-inprocess.py @@ -10,17 +10,17 @@ u = uimod.ui.load() print('% creating repo') -repo = localrepo.localrepository(u, '.', create=True) +repo = localrepo.localrepository(u, b'.', create=True) f = open('test.py', 'w') try: f.write('foo\n') finally: f.close print('% add and commit') -commands.add(u, repo, 'test.py') -commands.commit(u, repo, message='*') +commands.add(u, repo, b'test.py') +commands.commit(u, repo, message=b'*') commands.status(u, repo, clean=True)