1
0
mirror of https://github.com/go-task/task.git synced 2025-11-25 22:32:55 +02:00

fix: variables passed to included taskfile (#1533)

This commit is contained in:
Pete Davison
2024-03-10 17:28:04 +00:00
committed by GitHub
parent a425e2bb6c
commit c0a0faf3d3
3 changed files with 4 additions and 4 deletions

View File

@@ -1785,7 +1785,7 @@ Hello bar
`)
require.NoError(t, e.Run(context.Background(), &ast.Call{Task: "default"}))
t.Log(buff.String())
assert.Equal(t, strings.TrimSpace(buff.String()), expectedOutputOrder)
assert.Equal(t, expectedOutputOrder, strings.TrimSpace(buff.String()))
}
func TestErrorCode(t *testing.T) {