Skip to content

Commit

Permalink
add null to test data points
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-nkumar committed Aug 30, 2024
1 parent 61a22cc commit e47d1a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17543,7 +17543,7 @@ def timedelta_property(
) # pragma: no cover
raise ErrorMessage.not_implemented(
f"Snowpark pandas doesn't yet support the property '{class_prefix}.{property_name}'"
)
) # pragma: no cover
return SnowflakeQueryCompiler(
self._modin_frame.apply_snowpark_function_to_columns(func, include_index)
)
2 changes: 1 addition & 1 deletion tests/integ/modin/index/test_timedelta_index_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_property_not_implemented(property):
@sql_count_checker(query_count=1)
def test_timedelta_index_properties(attr):
native_index = native_pd.TimedeltaIndex(
["1d", "1h", "60s", "1s", "800ms", "5us", "6ns", "1d 3s", "9m 15s 8us"]
["1d", "1h", "60s", "1s", "800ms", "5us", "6ns", "1d 3s", "9m 15s 8us", None]
)
snow_index = pd.Index(native_index)
assert_index_equal(
Expand Down

0 comments on commit e47d1a5

Please sign in to comment.