Skip to content

Commit

Permalink
refactor: minor tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward-Jackson-ONS committed Feb 23, 2024
1 parent b6d966b commit 833ee27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/aggregation/test_build_schedules.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def test_split_realtime_data(test_class_instantiate):
sample_df = pl.concat([sample_df, new_row])

# Use class mathod to test splitting of data.
labelled, unlalebbed = test_class_instantiate.split_realtime_data(
labelled, unlabelled = test_class_instantiate.split_realtime_data(
sample_df
)

assert len(labelled) == 6
assert len(unlalebbed) == 1
assert len(unlabelled) == 1

0 comments on commit 833ee27

Please sign in to comment.