Mercurial > hg
comparison tests/test-hook.t @ 18377:56b805306955
tests: make test-hook.t output more stable
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Tue, 15 Jan 2013 02:59:14 +0100 |
parents | 57fb8c9509f4 |
children | 442c0cb8287a |
comparison
equal
deleted
inserted
replaced
18376:13d73bf6be29 | 18377:56b805306955 |
---|---|
367 > | 367 > |
368 > def verbosehook(ui, **args): | 368 > def verbosehook(ui, **args): |
369 > ui.note('verbose output from hook\n') | 369 > ui.note('verbose output from hook\n') |
370 > | 370 > |
371 > def printtags(ui, repo, **args): | 371 > def printtags(ui, repo, **args): |
372 > print repo.tags().keys() | 372 > print sorted(repo.tags()) |
373 > | 373 > |
374 > class container: | 374 > class container: |
375 > unreachable = 1 | 375 > unreachable = 1 |
376 > EOF | 376 > EOF |
377 | 377 |