mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Reenable logging in the test
This commit is contained in:
parent
359cb697db
commit
08dc10f1af
1 changed files with 2 additions and 2 deletions
|
@ -21,12 +21,12 @@ class TestPreserveBundlerEnv < TestIntegration
|
|||
Dir.chdir(File.expand_path("bundle_preservation_test", __dir__)) do
|
||||
@server = IO.popen(env, cmd.split, "r")
|
||||
end
|
||||
wait_for_server_to_boot
|
||||
wait_for_server_to_boot(log: true)
|
||||
@pid = @server.pid
|
||||
connection = connect
|
||||
initial_reply = read_body(connection)
|
||||
assert_match("Gemfile.bundle_env_preservation_test", initial_reply)
|
||||
restart_server connection
|
||||
restart_server connection, log: true
|
||||
new_reply = read_body(connection)
|
||||
assert_match("Gemfile.bundle_env_preservation_test", new_reply)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue