summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Rüttimann <ror@panter.ch>2019-01-14 13:42:27 +0100
committerRoger Rüttimann <ror@panter.ch>2019-01-14 13:42:27 +0100
commit3197cd9b6cffadee9e5d633bd7d1f7673d1b9229 (patch)
tree9da091da01b822b768e46e2a6d57aaa8b5321b9c
parent9eb64a3455f4d3115c41bef5e5b0cdd8739bbb0c (diff)
downloadgitlab-ce-3197cd9b6cffadee9e5d633bd7d1f7673d1b9229.tar.gz
remove newly supported regex feature from validation error test
-rw-r--r--spec/validators/js_regex_validator_spec.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/spec/validators/js_regex_validator_spec.rb b/spec/validators/js_regex_validator_spec.rb
index aeb55cdc0e5..4d3bafaf267 100644
--- a/spec/validators/js_regex_validator_spec.rb
+++ b/spec/validators/js_regex_validator_spec.rb
@@ -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