diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-03-02 18:37:46 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-03-02 18:37:46 +0900 |
| commit | 0d3652b793f6dc238667db3ea7939f76e49948c8 (patch) | |
| tree | c742ebb028bfe8424b70ac0ca2a6b15316417458 /test/sandbox/assert.go | |
| parent | d8e9d71f87db912d73345fec2f9fcb61b25231cf (diff) | |
test/sandbox/assert: wrap printf
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'test/sandbox/assert.go')
| -rw-r--r-- | test/sandbox/assert.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/sandbox/assert.go b/test/sandbox/assert.go index 150bef45..2decde8f 100644 --- a/test/sandbox/assert.go +++ b/test/sandbox/assert.go @@ -8,9 +8,11 @@ import ( var ( assert = log.New(os.Stderr, "sandbox: ", 0) + printfFunc = assert.Printf fatalfFunc = assert.Fatalf ) +func printf(format string, v ...any) { printfFunc(format, v...) } func fatalf(format string, v ...any) { fatalfFunc(format, v...) } func MustAssertMounts(name, hostMountsFile, wantFile string) { @@ -53,7 +55,7 @@ func MustAssertMounts(name, hostMountsFile, wantFile string) { e, &want[i]) } - assert.Printf("%s", e) + printf("%s", e) i++ }); err != nil { fatalf("cannot iterate mounts: %v", err) |
