Skip to content

Commit

Permalink
fix: Fix entity row to use join key instead of name (#2521)
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Wang <[email protected]>
  • Loading branch information
felixwang9817 authored Apr 11, 2022
1 parent eb095f3 commit c22fa2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_online_retrieval(environment, universal_data_sources, benchmark):
sample_customers = random.sample(entities.customer_vals, 10)

entity_rows = [
{"driver": d, "customer_id": c, "val_to_add": 50}
{"driver_id": d, "customer_id": c, "val_to_add": 50}
for (d, c) in zip(sample_drivers, sample_customers)
]

Expand Down

0 comments on commit c22fa2c

Please sign in to comment.