aboutsummaryrefslogtreecommitdiffhomepage
path: root/helper/container_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-06-02 18:53:28 +0900
committerOphestra <cat@gensokyo.uk>2025-06-05 04:05:39 +0900
commitb7e991de5bfa81bff474d07142555df51202640a (patch)
tree3c49b25eab717cd4a8f5eb74a77dca2b3e8fcf6c /helper/container_test.go
parent6c1205106d7ac9702464e274502303d2b6df1dc3 (diff)
nix: update flake lock
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'helper/container_test.go')
-rw-r--r--helper/container_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/helper/container_test.go b/helper/container_test.go
index 886cbf47..088237cc 100644
--- a/helper/container_test.go
+++ b/helper/container_test.go
@@ -15,7 +15,7 @@ import (
func TestContainer(t *testing.T) {
t.Run("start empty container", func(t *testing.T) {
- h := helper.New(context.Background(), "/nonexistent", argsWt, false, argF, nil, nil)
+ h := helper.New(t.Context(), "/nonexistent", argsWt, false, argF, nil, nil)
wantErr := "sandbox: starting an empty container"
if err := h.Start(); err == nil || err.Error() != wantErr {
@@ -25,7 +25,7 @@ func TestContainer(t *testing.T) {
})
t.Run("valid new helper nil check", func(t *testing.T) {
- if got := helper.New(context.TODO(), "fortify", argsWt, false, argF, nil, nil); got == nil {
+ if got := helper.New(t.Context(), "fortify", argsWt, false, argF, nil, nil); got == nil {
t.Errorf("New(%q, %q) got nil",
argsWt, "fortify")
return