diff --git a/ui/sdk/tests/tracking/test_polars_col_stats.py b/ui/sdk/tests/tracking/test_polars_col_stats.py index 926ec5e5e..a20e79385 100644 --- a/ui/sdk/tests/tracking/test_polars_col_stats.py +++ b/ui/sdk/tests/tracking/test_polars_col_stats.py @@ -112,13 +112,3 @@ def test_max_string(example_df_string): def test_str_len(example_df_string): assert pcs.str_len(example_df_string["a"]).to_list() == [1, 1, 1, 1, 1] - - -def test_std_date(): - df = pl.DataFrame( - { - "a": ["2021-01-01", "2021-01-02", "2021-01-03", "2021-01-04", "2021-01-05"], - }, - schema=pl.Schema({"a": pl.Date}), - ) - assert pcs.std(df["a"]) == 1.5811388300841898