Skip to content

Commit

Permalink
Merge pull request #2940 from kolyshkin/intelrdt-unit-test
Browse files Browse the repository at this point in the history
libct/intelrdt: fix unit test
  • Loading branch information
AkihiroSuda authored May 20, 2021
2 parents 57d353d + e1d842c commit 4d87573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcontainer/intelrdt/intelrdt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ func TestFindIntelRdtMountpointDir(t *testing.T) {
},
}

t.Parallel()
for _, tc := range testCases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
mbaScEnabled = false
mp, err := findIntelRdtMountpointDir(tc.input)
if tc.isNotFoundError {
if !IsNotFound(err) {
Expand Down

0 comments on commit 4d87573

Please sign in to comment.