Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
r-akemii committed Oct 11, 2024
1 parent eccc56e commit e16e09f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
--@ The *fare_zones* table hold information on the transit fare zones and
--@ the transit agencies that operate in it.
--@
--@ **transit_fare_zone** identifies the transit fare zones
--@ **fare_zone_id** identifies the fare zone
--@
--@ **transit_zone** identifies the transit fare zones
--@
--@ **agency_id** identifies the agency/agencies for the specified fare zone

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
--@
--@ **fare_zone_id** identifies the fare zone for a stop
--@
--@ **transit_fare_zone** identifies the transit fare zone for a stop
--@ **transit_zone** identifies the transit fare zone for a stop
--@
--@ **route_type** indicates the type of transporation used on a route

Expand Down
2 changes: 1 addition & 1 deletion tests/aequilibrae/project/test_transit_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def create_project(project: Project):
["fare_id", "fare", "agency_id", "price", "currency", "payment_method", "transfer", "transfer_duration"],
),
("fare_rules", ["fare_id", "route_id", "origin", "destination", "contains"]),
("fare_zones", ["transit_fare_zone", "agency_id"]),
("fare_zones", ["fare_zone_id", "transit_zone", "agency_id"]),
("pattern_mapping", ["pattern_id", "seq", "link", "dir", "geometry"]),
(
"routes",
Expand Down

0 comments on commit e16e09f

Please sign in to comment.