Skip to content

Commit

Permalink
refactor(Directions Validation): update validation language
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-cline committed Oct 13, 2023
1 parent 01e8aa5 commit 68cec40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private static void validateTable(

if (tableIsDirections && !gtfsRoutes.isEmpty()) {
// After we're done validating all the table values, check if every route was checked off in directions.txt
issues.add(new ValidationIssue(tableId, null, -1, "Directions file doesn't define directions for all routes listed in routes file"));
issues.add(new ValidationIssue(tableId, null, -1, "Directions file doesn't define directions for all routes listed in routes.txt"));
}
// Add issues for wrong number of columns and for empty rows after processing all rows.
// Note: We considered adding an issue for each row, but opted for the single error approach because there's no
Expand Down

0 comments on commit 68cec40

Please sign in to comment.