8000 fixed repr test · googleapis/python-firestore@bf0dca2 · GitHub
[go: up one dir, main page]

Skip to content

Commit bf0dca2

Browse files
committed
fixed repr test
1 parent c62e448 commit bf0dca2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/v1/test_pipeline_stages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def test_repr(self):
215215
condition = Field.of("age").gt(30)
216216
instance = self._make_one(condition)
217217
repr_str = repr(instance)
218-
assert repr_str == "Where(condition=Gt(Field.of('age'), Constant.of(30)))"
218+
assert repr_str == "Where(condition=Field.of('age').gt(Constant.of(30)))"
219219

220220
def test_to_pb(self):
221221
condition = Field.of("city").eq("SF")

0 commit comments

Comments
 (0)
0