From c5f4b202757473b8262aa2e6e6bcfca1da3d73d3 Mon Sep 17 00:00:00 2001 From: Anton Lindqvist Date: Thu, 22 Mar 2012 12:25:10 +0100 Subject: Fixed missing space bug introduces in rails/rails@9299bfdcd387253d83b645c205b8df477f2d0940. --- railties/test/application/rake/notes_test.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'railties/test/application') diff --git a/railties/test/application/rake/notes_test.rb b/railties/test/application/rake/notes_test.rb index b66433f64d..04abf9e3a1 100644 --- a/railties/test/application/rake/notes_test.rb +++ b/railties/test/application/rake/notes_test.rb @@ -28,7 +28,7 @@ module ApplicationTests Dir.chdir(app_path) do output = `bundle exec rake notes` - lines = output.scan(/\[([0-9\s]+)\]/).flatten + lines = output.scan(/\[([0-9\s]+)\](\s)/) assert_match /note in erb/, output assert_match /note in haml/, output @@ -38,8 +38,9 @@ module ApplicationTests assert_equal 5, lines.size - lines.each do |line_number| - assert_equal 4, line_number.size + lines.each do |line| + assert_equal 4, line[0].size + assert_equal ' ', line[1] end end -- cgit v1.2.3