We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c674db9 commit 22e5194Copy full SHA for 22e5194
Tests/RegexTests/RegexDSLTests.swift
@@ -188,10 +188,10 @@ class RegexDSLTests: XCTestCase {
188
("aaaaabc", nil),
189
captureType: Substring.self, ==)
190
{
191
- Assertion.startOfLine
+ Anchor.startOfLine
192
"a".+
193
"b"
194
- Assertion.endOfLine
+ Anchor.endOfLine
195
}
196
197
try _testDSLCaptures(
@@ -201,7 +201,7 @@ class RegexDSLTests: XCTestCase {
201
202
203
204
- Assertion.lookahead(CharacterClass.digit)
+ lookahead(CharacterClass.digit)
205
CharacterClass.word
206
207
0 commit comments