Mercurial > hgsubversion
comparison tests/test_push_command.py @ 1206:aa8b72bd1320
test_push_command: improve commit messages inside test for diagnostics
This let me determine a little bit of a disturbing test failure:
test_push_existing_file_newly_symlink is broken against svn 1.8.8 for
me (and against svn 1.8.9 for Sean). This isn't a regression on our
part, but we need to work around this in the near future.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Wed, 16 Jul 2014 14:52:33 -0400 |
parents | cccc7a50f66d |
children | 5c2917375961 |
comparison
equal
deleted
inserted
replaced
1205:f1dd304be8aa | 1206:aa8b72bd1320 |
---|---|
494 islink=link, | 494 islink=link, |
495 isexec=execute, | 495 isexec=execute, |
496 copied=False) | 496 copied=False) |
497 ctx = context.memctx(repo, | 497 ctx = context.memctx(repo, |
498 (repo['default'].node(), node.nullid), | 498 (repo['default'].node(), node.nullid), |
499 'message', | 499 'mutate already-special file alpha', |
500 ['alpha', ], | 500 ['alpha', ], |
501 file_callback2, | 501 file_callback2, |
502 'author', | 502 'author', |
503 '2008-1-1 00:00:00 -0500', | 503 '2008-1-1 00:00:00 -0500', |
504 {'branch': 'default', }) | 504 {'branch': 'default', }) |
519 islink=False, | 519 islink=False, |
520 isexec=False, | 520 isexec=False, |
521 copied=False) | 521 copied=False) |
522 ctx = context.memctx(repo, | 522 ctx = context.memctx(repo, |
523 (repo['default'].node(), node.nullid), | 523 (repo['default'].node(), node.nullid), |
524 'message', | 524 'convert alpha back to regular file', |
525 ['alpha', ], | 525 ['alpha', ], |
526 file_callback3, | 526 file_callback3, |
527 'author', | 527 'author', |
528 '2008-01-01 00:00:00 -0500', | 528 '2008-01-01 00:00:00 -0500', |
529 {'branch': 'default', }) | 529 {'branch': 'default', }) |