diff options
| -rw-r--r-- | spec/models/import/gtfs_spec.rb | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/spec/models/import/gtfs_spec.rb b/spec/models/import/gtfs_spec.rb index bc35165b7..c2ba4e909 100644 --- a/spec/models/import/gtfs_spec.rb +++ b/spec/models/import/gtfs_spec.rb @@ -73,10 +73,10 @@ RSpec.describe Import::Gtfs do      it "should create a Route for each trip" do        referential.switch +      import.import_calendars        import.import_routes        import.import_trips -        defined_attributes = [          "lines.registration_number", :wayback, :name, :published_name        ] @@ -100,6 +100,7 @@ RSpec.describe Import::Gtfs do      it "should create a JourneyPattern for each trip" do        referential.switch +      import.import_calendars        import.import_routes        import.import_trips @@ -149,6 +150,7 @@ RSpec.describe Import::Gtfs do        import.import_stops        import.import_routes +      import.import_calendars        import.import_trips        import.import_stop_times | 
