Skip to content

Commit

Permalink
Remove warning in namespaced generator test
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosantoniodasilva committed May 19, 2012
1 parent bd838c0 commit 573448f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion railties/test/generators/namespaced_generators_test.rb
Expand Up @@ -66,7 +66,7 @@ def test_namespaced_controller_dont_indent_blank_lines
run_generator run_generator
assert_file "app/controllers/test_app/account_controller.rb" do |content| assert_file "app/controllers/test_app/account_controller.rb" do |content|
content.split("\n").each do |line| content.split("\n").each do |line|
assert_no_match /^\s+$/, line, "Don't indent blank lines" assert_no_match(/^\s+$/, line, "Don't indent blank lines")
end end
end end
end end
Expand Down

0 comments on commit 573448f

Please sign in to comment.