Skip to content

Commit 3964692

Browse files
Mikhail KoviazinRafiot
authored andcommitted
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> Signed-off-by: Raphaël Vinot <raphael@vinot.info>
1 parent a844193 commit 3964692

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
@@ -3623,15 +3623,15 @@ def test_geosearch_member(self, r):
36233623
)
36243624

36253625
# All but the coordinates are identical
3626-
geosearch_place2[:-1] == [
3626+
assert geosearch_place2[:-1] == [
36273627
b"\x80place2",
36283628
3067.4157,
36293629
3471609625421029,
36303630
]
36313631
assert_geo_is_close(
36323632
geosearch_place2[-1], (2.187376320362091, 41.40634178640635)
36333633
)
3634-
geosearch_place1[:-1] == [
3634+
assert geosearch_place1[:-1] == [
36353635
b"place1",
36363636
0.0,
36373637
3471609698139488,

0 commit comments

Comments
 (0)