We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b3ee41 commit 8531793Copy full SHA for 8531793
1 file changed
integration/client/snapshot_windows_test.go
@@ -33,7 +33,7 @@ func runTestSnapshotterClient(t *testing.T) {
33
// The SeBackupPrivilege and SeRestorePrivilege gives us access to system files inside the container mount points
34
// (and everywhere on the system), without having to explicitly set DACLs on each location inside the mount point.
35
if err := winio.EnableProcessPrivileges([]string{winio.SeBackupPrivilege, winio.SeRestorePrivilege}); err != nil {
36
- t.Error(err)
+ t.Fatal(err)
37
}
38
defer winio.DisableProcessPrivileges([]string{winio.SeBackupPrivilege, winio.SeRestorePrivilege})
39
testsuite.SnapshotterSuite(t, "SnapshotterClient", newSnapshotter)
0 commit comments