diff options
| -rw-r--r-- | spec/support/proxy_helper.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/spec/support/proxy_helper.rb b/spec/support/proxy_helper.rb index 1f4cd4f..add0c24 100644 --- a/spec/support/proxy_helper.rb +++ b/spec/support/proxy_helper.rb @@ -10,12 +10,10 @@ end RSpec.configure do |config| config.include(ProxyHelper, type: :integration) config.before(:suite) do - pid = ProxyServer.instance.start - puts "START PROXY SERVER (#{pid})" + ProxyServer.instance.start end config.after(:suite) do - puts "STOP PROXY SERVER (#{ProxyServer.instance.pid})" ProxyServer.instance.stop end end |
