Skip to content

Commit

Permalink
gpu: fix test after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
guyarb committed Nov 17, 2024
1 parent 352dd75 commit 80d6edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/gpu/probe_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (s *probeTestSuite) TestMultiGPUSupport() {
// Wait until the process finishes and we can get the stats. Run this instead of waiting for the process to finish
// so that we can time out correctly
require.Eventually(t, func() bool {
return !utils.IsProgramTraced(gpuAttacherName, cmd.Process.Pid)
return !utils.IsProgramTraced(gpuModuleName, gpuAttacherName, cmd.Process.Pid)
}, 60*time.Second, 500*time.Millisecond, "process not stopped")

stats, err := probe.GetAndFlush()
Expand Down

0 comments on commit 80d6edc

Please sign in to comment.