Skip to content

Commit

Permalink
Corrected type mismatch.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcdermott committed Aug 28, 2024
1 parent f0f5441 commit 63f504f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_meds.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def parse_labels_yaml(yaml_str: str) -> dict[str, pl.DataFrame]:

WANT_EMPTY_WINDOW_SCHEMA = {"subject_id": pl.Int64}
WANT_NON_EMPTY_WINDOW_SCHEMA = {
"subject_id": pl.UInt32,
"subject_id": pl.Int64,
"prediction_time": pl.Datetime,
"boolean_value": pl.Int64,
"trigger": pl.Datetime,
Expand Down

0 comments on commit 63f504f

Please sign in to comment.