Skip to content

Commit

Permalink
OMG it works! Remove diagnostic logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
seven1m committed Feb 13, 2020
1 parent 9dcd2e3 commit 2ed158e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_preserve_bundler_env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ def test_usr2_restart_preserves_bundler_environment
Dir.chdir(File.expand_path("bundle_preservation_test", __dir__)) do
@server = IO.popen(env, cmd.split, "r")
end
wait_for_server_to_boot(log: true)
wait_for_server_to_boot
@pid = @server.pid
connection = connect
initial_reply = read_body(connection)
assert_match("Gemfile.bundle_env_preservation_test", initial_reply)
restart_server connection, log: true
restart_server connection
new_reply = read_body(connection)
assert_match("Gemfile.bundle_env_preservation_test", new_reply)
end
Expand Down

0 comments on commit 2ed158e

Please sign in to comment.