Skip to content

Commit

Permalink
Add missing tabulation to artifacts in tap output
Browse files Browse the repository at this point in the history
Before:

    #   artifacts:
    #   server -> /tmp/t/006_box-luatest/artifacts/server-QqXEefvTm8

After:

    #   artifacts:
    #         server -> /tmp/t/006_box-luatest/artifacts/server-QqXEefvTm8
  • Loading branch information
ylobankov committed Nov 21, 2023
1 parent 6f0194c commit 5e8c3e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luatest/output/tap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function Output.mt:update_status(node)
if utils.table_len(node.servers) > 0 then
print(prefix .. 'artifacts:')
for _, server in pairs(node.servers) do
print(('%s%s -> %s'):format(prefix, server.alias, server.artifacts))
print(('%s\t%s -> %s'):format(prefix, server.alias, server.artifacts))
end
end
end
Expand Down

0 comments on commit 5e8c3e3

Please sign in to comment.