Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ci for es-AR #2317

Merged
merged 2 commits into from May 7, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions test/test_es_ar_locale.rb
Expand Up @@ -6,14 +6,14 @@ class TestEsArLocale < Test::Unit::TestCase
def setup
Faker::Config.locale = 'es-AR'

@no_words_pattern = /\w{0}$/u
@one_word_pattern = /\w+/u
@one_or_more_words_pattern = /(?:\w+\ )*\w+/u
@many_words_pattern = /(?:\w+\ )+\w+/u
@no_words_pattern = /(?u:\w{0})$/
@one_word_pattern = /(?u:\w+)/
@one_or_more_words_pattern = /(?u:(?:\w+\ )*\w+)/
@many_words_pattern = /(?u:(?:\w+\ )+\w+)/

@name_with_nickname_pattern = /(?:\'*\w+\'*\ )+(?:\'*\w+\'*)/u
@name_with_nickname_pattern = /(?u:(?:\'*\w+\'*\ )+(?:\'*\w+\'*))/

@compass_letter_pattern = /^[NEOS]{1,2}(?:p?[NEOS]{1,2})?$/u
@compass_letter_pattern = /^[NEOS]{1,2}(?:p?[NEOS]{1,2})?$/
@compass_number_pattern = /^\d+(?:.\d\d?)?$/
end

Expand Down