From a527b29ac3dbe12936df54bd3935321a376b8017 Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Sun, 12 Jul 2026 07:49:58 +0200 Subject: [PATCH] test: fix unused var in reassert test Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_017CDMFpFx84pfviCTVuGGhf --- internal/storage/netreassert_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/storage/netreassert_test.go b/internal/storage/netreassert_test.go index 3cba6c0..6264ba0 100644 --- a/internal/storage/netreassert_test.go +++ b/internal/storage/netreassert_test.go @@ -99,7 +99,7 @@ func TestReassertNetworkAutomounts_ResetsFailedThenRearms(t *testing.T) { } unitDir := t.TempDir() spec := NetworkMountSpec{Name: "media", Protocol: ProtocolNFS, Server: "10.0.0.5", Export: "/srv/media", MappedUID: 1000, MappedGID: 1000} - where, autoUnit := installNetUnitFile(t, unitDir, spec) + _, autoUnit := installNetUnitFile(t, unitDir, spec) // Nothing mounted (fstype "" — a start-limited automount), and the automount unit is in failed state. ops, rr := netReassertOps(t, unitDir, nil, autoUnit)