Commit 72c31b81ac61e674779b3743c5b624b5b7c5d772
Committed by
Antonio Terceiro
1 parent
7a8bf187
Exists in
master
and in
29 other branches
Adding line to ignore translations when running selenium
* ENV['LANG'] = 'c' (ActionItem1319)
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
features/support/selenium.rb
@@ -15,6 +15,7 @@ Before do | @@ -15,6 +15,7 @@ Before do | ||
15 | fixtures_folder = File.join(RAILS_ROOT, 'test', 'fixtures') | 15 | fixtures_folder = File.join(RAILS_ROOT, 'test', 'fixtures') |
16 | fixtures = ['environments', 'roles'] | 16 | fixtures = ['environments', 'roles'] |
17 | Fixtures.create_fixtures(fixtures_folder, fixtures) | 17 | Fixtures.create_fixtures(fixtures_folder, fixtures) |
18 | + ENV['LANG'] = 'C' | ||
18 | DatabaseCleaner.start | 19 | DatabaseCleaner.start |
19 | end | 20 | end |
20 | 21 |