Skip to content

Commit

Permalink
feat(Directions Validation): update validation language
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-cline committed Oct 12, 2023
1 parent 8f77fc3 commit 01e8aa5
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, "route_id", -1, "Directions table does not define direction names for all routes."));
issues.add(new ValidationIssue(tableId, null, -1, "Directions file doesn't define directions for all routes listed in routes file"));
}
// 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 01e8aa5

Please sign in to comment.