summaryrefslogtreecommitdiff
path: root/gitdb/test
diff options
context:
space:
mode:
authorKian-Meng Ang <kianmeng@cpan.org>2022-01-05 21:58:22 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-01-06 08:50:11 +0800
commit2913a6454c9dfc803679dc5f75315e2d821ee977 (patch)
treecc639a0d9ae1890840f35e39a977c413eeb19d03 /gitdb/test
parent9a289258074fbf92a64186274067a46f7b27666e (diff)
downloadgitdb-2913a6454c9dfc803679dc5f75315e2d821ee977.tar.gz
Fix typos
Diffstat (limited to 'gitdb/test')
-rw-r--r--gitdb/test/db/lib.py2
-rw-r--r--gitdb/test/db/test_pack.py2
-rw-r--r--gitdb/test/test_pack.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/gitdb/test/db/lib.py b/gitdb/test/db/lib.py
index 3df326b..b38f1d5 100644
--- a/gitdb/test/db/lib.py
+++ b/gitdb/test/db/lib.py
@@ -107,7 +107,7 @@ class TestDBBase(TestBase):
# DIRECT STREAM COPY
# our data hase been written in object format to the StringIO
- # we pasesd as output stream. No physical database representation
+ # we passed as output stream. No physical database representation
# was created.
# Test direct stream copy of object streams, the result must be
# identical to what we fed in
diff --git a/gitdb/test/db/test_pack.py b/gitdb/test/db/test_pack.py
index 458d804..ff96a58 100644
--- a/gitdb/test/db/test_pack.py
+++ b/gitdb/test/db/test_pack.py
@@ -80,7 +80,7 @@ class TestPackDB(TestDBBase):
# END for each sha to find
# we should have at least one ambiguous, considering the small sizes
- # but in our pack, there is no ambigious ...
+ # but in our pack, there is no ambiguous ...
# assert num_ambiguous
# non-existing
diff --git a/gitdb/test/test_pack.py b/gitdb/test/test_pack.py
index 48a1852..4b01741 100644
--- a/gitdb/test/test_pack.py
+++ b/gitdb/test/test_pack.py
@@ -101,7 +101,7 @@ class TestPack(TestBase):
dstream = DeltaApplyReader.new(streams)
except ValueError:
# ignore these, old git versions use only ref deltas,
- # which we havent resolved ( as we are without an index )
+ # which we haven't resolved ( as we are without an index )
# Also ignore non-delta streams
continue
# END get deltastream