Skip to content

Commit

Permalink
Fixed test (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Feb 6, 2018
1 parent 635b52c commit eccaad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/sangria/parser/QueryParser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ trait Ignored extends PositionTracking { this: Parser ⇒

def ws(s: String): Rule0 = rule { quiet(Ignored.* ~ str(s) ~ Ignored.*) }

def wsCapture(s: String) = rule { quiet(Ignored.* ~ capture(str(s)) ~ Ignored.*) }
def wsCapture(s: String) = rule { quiet(Ignored.* ~ capture(str(s)) ~ IgnoredNoComment.*) }

}

Expand Down

0 comments on commit eccaad7

Please sign in to comment.