-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update validation language #568
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just a small suggestion, but if they want the exact original text I'm fine with that.
@@ -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")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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, "The directions file doesn't define directions for all routes listed in the routes file")); |
or maybe say "routes listed in "routes.txt" explicitly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like that better as well, I asked them what they think
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright we have the go-ahead for routes.txt which is my favourite
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with @binh-dam-ibigroup
Checklist
dev
before they can be merged tomaster
)Description
Responding to some comments around the language of the recent
directions.txt
validation.