From 04d21f45bbe1f0a791ef33c90323f7f7d61a260a Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 20 Sep 2024 08:45:40 -0700 Subject: [PATCH] Fix test --- test/cli/proxy_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cli/proxy_test.rb b/test/cli/proxy_test.rb index 72a0aa13..c9987a51 100644 --- a/test/cli/proxy_test.rb +++ b/test/cli/proxy_test.rb @@ -111,11 +111,11 @@ class CliProxyTest < CliTestCase test "logs" do SSHKit::Backend::Abstract.any_instance.stubs(:capture) - .with(:docker, :logs, "kamal-proxy", " --tail 100", "--timestamps", "2>&1") + .with(:docker, :logs, "kamal-proxy", "--tail 100", "--timestamps", "2>&1") .returns("Log entry") SSHKit::Backend::Abstract.any_instance.stubs(:capture) - .with(:docker, :logs, "proxy", " --tail 100", "--timestamps", "2>&1") + .with(:docker, :logs, "proxy", "--tail 100", "--timestamps", "2>&1") .returns("Log entry") run_command("logs").tap do |output|