From 40039d355287b43ccd42c58443bec914c8e57067 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 15 May 2025 11:33:42 -0300 Subject: src/uuid.go: Use envT in run() --- tests/uuid.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/uuid.go') diff --git a/tests/uuid.go b/tests/uuid.go index 912339a..242fd8e 100644 --- a/tests/uuid.go +++ b/tests/uuid.go @@ -570,8 +570,8 @@ func test_run() { version: 7, } - rc1 := run(args1, nil, &out1, nil) - rc2 := run(args2, nil, &out2, nil) + rc1 := run(envT{args1, nil, &out1, nil}) + rc2 := run(envT{args2, nil, &out2, nil}) assertEq(rc1, 0) assertEq(rc2, 0) @@ -591,8 +591,8 @@ func test_run() { subArgs: []string{New().String()}, } - rc1 := run(args1, nil, nil, &err1) - rc2 := run(args2, nil, nil, nil) + rc1 := run(envT{args1, nil, nil, &err1}) + rc2 := run(envT{args2, nil, nil, nil}) assertEq(rc1, 3) assertEq(rc2, 0) -- cgit v1.2.3