diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2011-03-31 20:27:44 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2011-03-31 20:27:44 +0200 |
| commit | 184a776960efdc2a83eac571c9c046ffcee3e7c8 (patch) | |
| tree | c8f9f6023f8b1457e4a8796cd7d487d5effcee10 /gitdb/test/test_pack.py | |
| parent | 98a19ac1986b623277098263f01696827567c584 (diff) | |
| download | gitdb-184a776960efdc2a83eac571c9c046ffcee3e7c8.tar.gz | |
crc needs to be done on the pack object header as well, of course
Diffstat (limited to 'gitdb/test/test_pack.py')
| -rw-r--r-- | gitdb/test/test_pack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitdb/test/test_pack.py b/gitdb/test/test_pack.py index e9c933e..4a7f1ca 100644 --- a/gitdb/test/test_pack.py +++ b/gitdb/test/test_pack.py @@ -234,7 +234,7 @@ class TestPack(TestBase): count = 0 for info in entity.info_iter(): count += 1 - for use_crc in reversed(range(2)): + for use_crc in range(2): assert entity.is_valid_stream(info.binsha, use_crc) # END for each crc mode #END for each info |
