diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2010-10-31 02:36:57 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-11-09 15:00:43 -0800 |
commit | 0155a64e88ad65408f9ca6d988156aec0898863d (patch) | |
tree | 7cced7af4d2a4080f62cc0d88612e438f162ae1c /t | |
parent | t1400 (update-ref): use test_must_fail (diff) | |
download | tgif-0155a64e88ad65408f9ca6d988156aec0898863d.tar.xz |
t3301 (notes): use test_expect_code for clarity
Use the test_expect_code helper instead of open-coding it.
The main behavior change is to print the command and actual exit
status when the test fails. More importantly, this would make it
easier to add commands before "git notes show" as part of the
same test assertion if needed.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t3301-notes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3301-notes.sh b/t/t3301-notes.sh index 69311713d7..7e84ab9790 100755 --- a/t/t3301-notes.sh +++ b/t/t3301-notes.sh @@ -52,7 +52,7 @@ test_expect_success 'refusing to edit notes in refs/remotes/' ' # 1 indicates caught gracefully by die, 128 means git-show barked test_expect_success 'handle empty notes gracefully' ' - git notes show ; test 1 = $? + test_expect_code 1 git notes show ' test_expect_success 'show non-existent notes entry with %N' ' |