Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix the tests after e594000
  • Loading branch information
gsamokovarov committed Mar 8, 2016
1 parent 818a715 commit 61a51a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions railties/test/generators/app_generator_test.rb
Expand Up @@ -632,7 +632,7 @@ def test_web_console_with_dev_option

assert_file "Gemfile" do |content|
assert_match(/gem 'web-console',\s+github: 'rails\/web-console'/, content)
assert_no_match(/gem 'web-console'/, content)
assert_no_match(/\Agem 'web-console'\z/, content)
end
end

Expand All @@ -641,7 +641,7 @@ def test_web_console_with_edge_option

assert_file "Gemfile" do |content|
assert_match(/gem 'web-console',\s+github: 'rails\/web-console'/, content)
assert_no_match(/gem 'web-console'/, content)
assert_no_match(/\Agem 'web-console'\z/, content)
end
end

Expand Down

0 comments on commit 61a51a5

Please sign in to comment.