Skip to content

Commit

Permalink
fix tour schedule test
Browse files Browse the repository at this point in the history
  • Loading branch information
jpn-- committed Nov 10, 2023
1 parent 4d05c28 commit b184ae0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# ActivitySim
# See full license in LICENSE.txt.

from __future__ import annotations

import pandas as pd
import pandas.testing as pdt

from activitysim.abm.models.util.vectorize_tour_scheduling import (
TourSchedulingSettings,
get_previous_tour_by_tourid,
vectorize_tour_scheduling,
)
Expand Down Expand Up @@ -64,7 +67,7 @@ def test_vts():
timetable,
tour_segments={"spec": spec},
tour_segment_col=None,
model_settings={},
model_settings=TourSchedulingSettings(),
chunk_size=0,
trace_label="test_vts",
)
Expand Down
2 changes: 1 addition & 1 deletion activitysim/abm/models/util/vectorize_tour_scheduling.py
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ def vectorize_tour_scheduling(
spec : DataFrame
The spec which will be passed to interaction_simulate.
(or dict of specs keyed on tour_type if tour_types is not None)
model_settings : LOGSUM_SETTINGS
model_settings : TourSchedulingSettings
Returns
-------
Expand Down

0 comments on commit b184ae0

Please sign in to comment.