Skip to content

Commit 8cb7284

Browse files
committed
spellcheck codebase
1 parent 61f5095 commit 8cb7284

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_queries.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def test_le():
259259
# Test for tag key "city".
260260
taq_q = TagQuery().city <= "melbourne"
261261
assert taq_q(Point(tags={"city": "melbourne"}))
262-
assert not taq_q(Point(tags={"city": "zansibar"}))
262+
assert not taq_q(Point(tags={"city": "zanzibar"}))
263263
assert not taq_q(Point())
264264
assert hash(taq_q)
265265

@@ -290,7 +290,7 @@ def test_gt():
290290
"""Test simple greater than comparison."""
291291
# Test for tag key "city".
292292
taq_q = TagQuery().city > "melbourne"
293-
assert taq_q(Point(tags={"city": "zansibar"}))
293+
assert taq_q(Point(tags={"city": "zanzibar"}))
294294
assert not taq_q(Point(tags={"city": "amsterdam"}))
295295
assert not taq_q(Point())
296296
assert hash(taq_q)

0 commit comments

Comments
 (0)