aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/engine
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-09-11 07:06:30 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-09-11 07:06:30 +0900
commit5b0b1ee8fda1cd086653992f812f96c62fb3c24b (patch)
tree58540179f00d378f510e2d7f2338dc3a0ba6035f /railties/test/engine
parente7fc2afb21bb09db00a61783755eda4509db99f7 (diff)
downloadrails-5b0b1ee8fda1cd086653992f812f96c62fb3c24b.tar.gz
rails-5b0b1ee8fda1cd086653992f812f96c62fb3c24b.tar.bz2
rails-5b0b1ee8fda1cd086653992f812f96c62fb3c24b.zip
Use correct variable
Follow up of 3e81490717a314437f9123d86fa3e9dc55558e95.
Diffstat (limited to 'railties/test/engine')
-rw-r--r--railties/test/engine/commands_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/engine/commands_test.rb b/railties/test/engine/commands_test.rb
index ff6cdf2e97..48c93af80c 100644
--- a/railties/test/engine/commands_test.rb
+++ b/railties/test/engine/commands_test.rb
@@ -37,7 +37,7 @@ class Rails::Engine::CommandsTest < ActiveSupport::TestCase
spawn_command("console", replica)
assert_output(">", primary)
ensure
- master.puts "quit"
+ primary.puts "quit"
end
def test_dbconsole_command_work_inside_engine
@@ -47,7 +47,7 @@ class Rails::Engine::CommandsTest < ActiveSupport::TestCase
spawn_command("dbconsole", replica)
assert_output("sqlite>", primary)
ensure
- master.puts ".exit"
+ primary.puts ".exit"
end
def test_server_command_work_inside_engine