Skip to content

Commit 1b0b471

Browse files
author
Mikhail Koviazin
committed
tests: added forgotten asserts in test_geosearch_member
These lines were missing the `assert` keyword and hence were meaningless. Signed-off-by: Mikhail Koviazin <mikhail.koviazin@aiven.io>
1 parent c8c19c2 commit 1b0b471

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3620,15 +3620,15 @@ def test_geosearch_member(self, r):
36203620
)
36213621

36223622
# All but the coordinates are identical
3623-
geosearch_place2[:-1] == [
3623+
assert geosearch_place2[:-1] == [
36243624
b"\x80place2",
36253625
3067.4157,
36263626
3471609625421029,
36273627
]
36283628
assert_geo_is_close(
36293629
geosearch_place2[-1], (2.187376320362091, 41.40634178640635)
36303630
)
3631-
geosearch_place1[:-1] == [
3631+
assert geosearch_place1[:-1] == [
36323632
b"place1",
36333633
0.0,
36343634
3471609698139488,

0 commit comments

Comments
 (0)