From c59e085491949e0d6269673340bda54a0440e45a Mon Sep 17 00:00:00 2001 From: Nate Maninger Date: Wed, 15 Nov 2023 12:49:42 -0800 Subject: [PATCH] storage: remove race prone status check from test --- host/storage/storage_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/host/storage/storage_test.go b/host/storage/storage_test.go index 83d4711a..21888c18 100644 --- a/host/storage/storage_test.go +++ b/host/storage/storage_test.go @@ -1084,8 +1084,6 @@ func TestVolumeShrink(t *testing.T) { t.Fatalf("expected %v total sectors, got %v", remainingSectors, meta.TotalSectors) } else if meta.UsedSectors != remainingSectors { t.Fatalf("expected %v used sectors, got %v", remainingSectors, meta.UsedSectors) - } else if meta.Status != storage.VolumeStatusReady { - t.Fatalf("expected volume status to be ready, got %v", meta.Status) } // validate that the sectors were moved to the beginning of the volume