Skip to content

Commit 21b30cb

Browse files
committed
From review: remove an extra \ from the regex pattern. (The regex parser ignores it in front of a ", but it's confusing.)
1 parent 4c7f595 commit 21b30cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/RegexTests/RenderDSLTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ extension RenderDSLTests {
116116
}
117117

118118
func testQuoting() throws {
119-
try testConversion(#"\\\"a\""#, #"""
119+
try testConversion(#"\\"a""#, #"""
120120
Regex {
121121
"\\\"a\""
122122
}

0 commit comments

Comments
 (0)