Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Rüttimann <ror@panter.ch>2019-01-14 15:42:27 +0300
committerRoger Rüttimann <ror@panter.ch>2019-01-14 15:42:27 +0300
commit3197cd9b6cffadee9e5d633bd7d1f7673d1b9229 (patch)
tree9da091da01b822b768e46e2a6d57aaa8b5321b9c /spec/validators
parent9eb64a3455f4d3115c41bef5e5b0cdd8739bbb0c (diff)
remove newly supported regex feature from validation error test
Diffstat (limited to 'spec/validators')
-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