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/t4205-log-pretty-formats.sh | |
parent | 302bd999fd0ef41f3605a2212c23f54ae43649f8 (diff) | |
download | git-7be8b3baba863ae5297aedbc3635d6f4a3336838.tar.gz |
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/t4205-log-pretty-formats.sh')
-rwxr-xr-x | t/t4205-log-pretty-formats.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4205-log-pretty-formats.sh b/t/t4205-log-pretty-formats.sh index cb9f2bdd29..2ae9faa8b3 100755 --- a/t/t4205-log-pretty-formats.sh +++ b/t/t4205-log-pretty-formats.sh @@ -45,7 +45,7 @@ test_expect_success 'alias user-defined tformat' ' test_cmp expected actual ' -test_expect_success 'alias non-existant format' ' +test_expect_success 'alias non-existent format' ' git config pretty.test-alias format-that-will-never-exist && test_must_fail git log --pretty=test-alias ' |