diff options
author | Dmitry Ivankov <divanorama@gmail.com> | 2011-06-16 19:42:48 +0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-06-16 10:33:50 -0700 |
commit | 7be8b3baba863ae5297aedbc3635d6f4a3336838 (patch) | |
tree | 5d6bc662ec26fa92a155e77c4cb18ffd8a276d2a /t/t3903-stash.sh | |
parent | Git 1.7.6-rc2 (diff) | |
download | tgif-7be8b3baba863ae5297aedbc3635d6f4a3336838.tar.xz |
Fix typo: existant->existent
refs.c had a error message "Trying to write ref with nonexistant object".
And no tests relied on the wrong spelling.
Also typo was present in some test scripts internals, these tests still pass.
Signed-off-by: Dmitry Ivankov <divanorama@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3903-stash.sh')
-rwxr-xr-x | t/t3903-stash.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh index 5c72540642..7197aae1ed 100755 --- a/t/t3903-stash.sh +++ b/t/t3903-stash.sh @@ -536,7 +536,7 @@ test_expect_success 'stash pop - fail early if specified stash is not a stash re git reset --hard HEAD ' -test_expect_success 'ref with non-existant reflog' ' +test_expect_success 'ref with non-existent reflog' ' git stash clear && echo bar5 > file && echo bar6 > file2 && |