Skip to content

Commit

Permalink
Fix Google Translate E2E test
Browse files Browse the repository at this point in the history
  • Loading branch information
glebm committed Jan 12, 2020
1 parent 0a15310 commit 26ae43e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/google_translate_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
RSpec.describe 'Google Translation' do
nil_value_test = ['nil-value-key', nil, nil]
empty_value_test = ['empty-value-key', '', '']
text_test = ['key', "Hello - %{user} O'Neill!", "Hola - %{user} O'Neill!"]
html_test = ['html-key.html', "Hello - <b>%{user} O'neill</b>", "Hola - <b>%{user} O'neill</b>"]
text_test = ['key', "Hello, %{user} O'Neill!", "Hola, %{user} O'Neill!"]
html_test = ['html-key.html', "Hello, <b>%{user} O'neill</b>", "Hola, <b>%{user} O'neill</b>"]
html_test_plrl = ['html-key.html.one', '<b>Hello %{count}</b>', '<b>Hola %{count}</b>']
array_test = ['array-key', ['Hello.', nil, '', 'Goodbye.'], ['Hola.', nil, '', 'Adiós.']]
fixnum_test = ['numeric-key', 1, 1]
Expand Down

0 comments on commit 26ae43e

Please sign in to comment.