aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/generators/argv_scrubber_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/test/generators/argv_scrubber_test.rb b/railties/test/generators/argv_scrubber_test.rb
index 5bf8442074..26b33740c8 100644
--- a/railties/test/generators/argv_scrubber_test.rb
+++ b/railties/test/generators/argv_scrubber_test.rb
@@ -40,7 +40,6 @@ module Rails
end
}.new ['new']
args = scrubber.prepare!
- assert_nil args.first
assert_equal [], args
end
@@ -57,7 +56,6 @@ module Rails
define_method(:puts) { |msg| message = msg }
}.new ['new']
args = scrubber.prepare!
- assert_nil args.first
assert_equal [nil, '--hello-world'], args
assert_match 'hello-world', message
assert_match file.path, message