Skip to content

Commit

Permalink
Change the comparisons in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-vbudati committed Apr 26, 2024
1 parent a52d2ef commit 86377ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integ/modin/frame/test_getitem.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,5 +383,5 @@ def test_df_getitem_boolean_df_comparator():
*create_test_dfs(
[[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12], [13, 14, 15, 16]]
),
lambda df: df[df > 0]
lambda df: df[df > 7]
)
2 changes: 1 addition & 1 deletion tests/integ/modin/series/test_getitem.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def test_series_getitem_with_multiindex(

@sql_count_checker(query_count=1)
def test_series_getitem_lambda_series():
data = {"a": 1, "b": 2, "c": 3}
data = {"a": 1, "b": 2, "c": 3, "d": -1, "e": 0, "f": 10}
snow_ser = pd.Series(data)
native_ser = native_pd.Series(data)

Expand Down

0 comments on commit 86377ad

Please sign in to comment.