File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -120,15 +120,15 @@ var _ = Describe("AppWrapper E2E Test", func() {
120
120
// This should fill up the worker node and most of the master node
121
121
aw := createDeploymentAWwith550CPU (context , appendRandomString ("aw-deployment-2-550cpu" ))
122
122
appwrappers = append (appwrappers , aw )
123
- time .Sleep (1 * time .Minute )
124
123
err := waitAWPodsReady (context , aw )
125
124
Expect (err ).NotTo (HaveOccurred ())
126
125
127
126
// This should not fit on cluster
128
127
aw2 := createDeploymentAWwith426CPU (context , appendRandomString ("aw-deployment-2-426cpu" ))
129
128
appwrappers = append (appwrappers , aw2 )
130
129
err = waitAWAnyPodsExists (context , aw2 )
131
- Expect (err ).NotTo (HaveOccurred ())
130
+ //With improved accounting, no pods will be spawned
131
+ Expect (err ).To (HaveOccurred ())
132
132
133
133
// This should fit on cluster, initially queued because of aw2 above but should eventually
134
134
// run after prevention of aw2 above.
You can’t perform that action at this time.
0 commit comments