Skip to content

Commit

Permalink
Float literal
Browse files Browse the repository at this point in the history
  • Loading branch information
ecomodeller committed Aug 6, 2024
1 parent d1af799 commit b3d606d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_dfs0.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def test_from_polars_explicit_time_column() -> None:
df = pl.DataFrame(
{
"flow": [1.0, None, 2.0],
"level": [2, 3.0, -1.3],
"level": [2.0, 3.0, -1.3],
"time": [
datetime(2001, 1, 1, 0),
datetime(2001, 1, 1, 1),
Expand Down Expand Up @@ -401,7 +401,7 @@ def test_from_polars_use_first_datetime_column() -> None:
datetime(2001, 1, 1, 2),
],
"flow": [1.0, None, 2.0],
"level": [2, 3.0, -1.3],
"level": [2.0, 3.0, -1.3],
}
)

Expand Down

0 comments on commit b3d606d

Please sign in to comment.