We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcc284d commit 77024c7Copy full SHA for 77024c7
pkg/epp/handlers/request_test.go
@@ -74,7 +74,9 @@ func TestHandleRequestBody(t *testing.T) {
74
fakeClient := fake.NewClientBuilder().
75
WithScheme(scheme).
76
Build()
77
- ds.PoolSet(ctx, fakeClient, pool)
+ if err := ds.PoolSet(ctx, fakeClient, pool); err != nil {
78
+ t.Error(err, "Error while setting inference pool")
79
+ }
80
ds.PodUpdateOrAddIfNotExist(pod)
81
82
tests := []struct {
0 commit comments