Encoder tests using gql fail on Windows #7
Labels
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: OSS/graphql#7
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The tests that use the gql quasi quoter fail becuase \n and \r don't match. The reason seems to be that git adds platform specific line endings and these breaks the multiline string literals. The solution would be probably to normalize the input. The quasi quoter uses
lines
andunlines
functions but these don't handle cariage return. So a customlines
function may be helpful.