@@ -31,7 +31,7 @@ import (
31
31
func TestContainerStats (t * testing.T ) {
32
32
t .Logf ("Create a pod config and run sandbox container" )
33
33
sbConfig := PodSandboxConfig ("sandbox1" , "stats" )
34
- sb , err := runtimeService .RunPodSandbox (sbConfig )
34
+ sb , err := runtimeService .RunPodSandbox (sbConfig , * runtimeHandler )
35
35
require .NoError (t , err )
36
36
defer func () {
37
37
assert .NoError (t , runtimeService .StopPodSandbox (sb ))
@@ -76,7 +76,7 @@ func TestContainerStats(t *testing.T) {
76
76
func TestContainerListStats (t * testing.T ) {
77
77
t .Logf ("Create a pod config and run sandbox container" )
78
78
sbConfig := PodSandboxConfig ("running-pod" , "statsls" )
79
- sb , err := runtimeService .RunPodSandbox (sbConfig )
79
+ sb , err := runtimeService .RunPodSandbox (sbConfig , * runtimeHandler )
80
80
require .NoError (t , err )
81
81
defer func () {
82
82
assert .NoError (t , runtimeService .StopPodSandbox (sb ))
@@ -131,7 +131,7 @@ func TestContainerListStats(t *testing.T) {
131
131
func TestContainerListStatsWithIdFilter (t * testing.T ) {
132
132
t .Logf ("Create a pod config and run sandbox container" )
133
133
sbConfig := PodSandboxConfig ("running-pod" , "statsls" )
134
- sb , err := runtimeService .RunPodSandbox (sbConfig )
134
+ sb , err := runtimeService .RunPodSandbox (sbConfig , * runtimeHandler )
135
135
require .NoError (t , err )
136
136
defer func () {
137
137
assert .NoError (t , runtimeService .StopPodSandbox (sb ))
@@ -191,7 +191,7 @@ func TestContainerListStatsWithIdFilter(t *testing.T) {
191
191
func TestContainerListStatsWithSandboxIdFilter (t * testing.T ) {
192
192
t .Logf ("Create a pod config and run sandbox container" )
193
193
sbConfig := PodSandboxConfig ("running-pod" , "statsls" )
194
- sb , err := runtimeService .RunPodSandbox (sbConfig )
194
+ sb , err := runtimeService .RunPodSandbox (sbConfig , * runtimeHandler )
195
195
require .NoError (t , err )
196
196
defer func () {
197
197
assert .NoError (t , runtimeService .StopPodSandbox (sb ))
@@ -247,7 +247,7 @@ func TestContainerListStatsWithSandboxIdFilter(t *testing.T) {
247
247
func TestContainerListStatsWithIdSandboxIdFilter (t * testing.T ) {
248
248
t .Logf ("Create a pod config and run sandbox container" )
249
249
sbConfig := PodSandboxConfig ("running-pod" , "statsls" )
250
- sb , err := runtimeService .RunPodSandbox (sbConfig )
250
+ sb , err := runtimeService .RunPodSandbox (sbConfig , * runtimeHandler )
251
251
require .NoError (t , err )
252
252
defer func () {
253
253
assert .NoError (t , runtimeService .StopPodSandbox (sb ))
0 commit comments