Skip to content

Commit

Permalink
Support python<3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
guyrosin committed Aug 15, 2023
1 parent f251f08 commit 1625d35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def __dataframe__(self):
) as mock_from_dataframe:
build_dataframe(args, go.Scatter)
mock_from_dataframe.assert_called_once_with(interchange_dataframe_reduced)
assert set(interchange_dataframe.select_columns_by_name.call_args.args[0]) == {
assert set(interchange_dataframe.select_columns_by_name.call_args[0][0]) == {
"petal_width",
"sepal_length",
}
Expand Down

0 comments on commit 1625d35

Please sign in to comment.