Dupe comment

This commit is contained in:
David Heinemeier Hansson
2023-02-03 17:20:14 +01:00
parent 5856a77a53
commit 58417f610f

View File

@@ -56,7 +56,7 @@ class CliAppTest < CliTestCase
test "exec with reuse" do
run_command("exec", "--reuse", "ruby -v").tap do |output|
assert_match %r[docker ps --filter label=service=app --format \"{{.Names}}\" | sed 's/-/\\n/g' | tail -n 1], output # Get current version
assert_match %r[docker exec app-999 ruby -v], output # Get current version
assert_match %r[docker exec app-999 ruby -v], output
end
end