remove newly supported regex feature from validation error test

This commit is contained in:
Roger Rüttimann 2019-01-14 13:42:27 +01:00
parent 9eb64a3455
commit 3197cd9b6c
1 changed files with 0 additions and 2 deletions

View File

@ -12,8 +12,6 @@ describe JsRegexValidator do
'' | []
'(?#comment)' | ['Regex Pattern (?#comment) can not be expressed in Javascript']
'(?(a)b|c)' | ['invalid conditional pattern: /(?(a)b|c)/i']
'[a-z&&[^uo]]' | ["Dropped unsupported set intersection '[a-z&&[^uo]]' at index 0",
"Dropped unsupported nested negative set data '[^uo]' at index 6"]
end
with_them do