Skip to content

Commit

Permalink
storage: remove race prone status check from test
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed Nov 15, 2023
1 parent 45b35e2 commit c59e085
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions host/storage/storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c59e085

Please sign in to comment.