diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-27 19:10:01 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-27 19:10:01 -0700 |
commit | eb7add9f6b220256ef6126399c12f01ca7ca35d6 (patch) | |
tree | ea32f8a599215da9e0675c577cb701717e2174ba /t | |
parent | f49fb35d0d58271dc7c93c2752ced0d743fdf12e (diff) | |
download | git-eb7add9f6b220256ef6126399c12f01ca7ca35d6.tar.gz git-eb7add9f6b220256ef6126399c12f01ca7ca35d6.tar.xz |
Fix up test that counted subdirectories in ".git/objects"
Now there are 257 of them (256 numeric ones, and the new "pack" directory)
Diffstat (limited to 't')
-rwxr-xr-x | t/t0000-basic.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh index 4462f57f2..547488bd2 100755 --- a/t/t0000-basic.sh +++ b/t/t0000-basic.sh @@ -28,11 +28,11 @@ test_expect_success \ '.git/objects should be empty after git-init-db in an empty repo.' \ 'cmp -s /dev/null should-be-empty' -# also it should have 256 subdirectories. 257 is counting "objects" +# also it should have 257 subdirectories. 258 is counting "objects" find .git/objects -type d -print >full-of-directories test_expect_success \ - '.git/objects should have 256 subdirectories.' \ - 'test $(wc -l < full-of-directories) = 257' + '.git/objects should have 257 subdirectories.' \ + 'test $(wc -l < full-of-directories) = 258' ################################################################ # Basics of the basics |