Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix test
Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
  • Loading branch information
kevjumba committed Jun 30, 2022
commit 2b8cbe9c310ab29490a50dc58ab1029f698a02e7
2 changes: 1 addition & 1 deletion sdk/python/tests/unit/test_proto_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_feast_repeated_value(proto_json_patch):
# additional structure (e.g. [1,2,3] instead of {"val": [1,2,3]})
repeated_value_str = "[1,2,3]"
repeated_value_proto = RepeatedValue()
Parse(repeated_value_str, repeated_value_proto)
Parse(repeated_value_str, repeated_value_proto, "")
assertpy.assert_that(len(repeated_value_proto.val)).is_equal_to(3)
assertpy.assert_that(repeated_value_proto.val[0].int64_val).is_equal_to(1)
assertpy.assert_that(repeated_value_proto.val[1].int64_val).is_equal_to(2)
Expand Down