@@ -298,7 +298,7 @@ var _ = Describe("AppWrapper E2E Test", func() {
298298appwrappers = append (appwrappers , aw )
299299
300300err := waitAWAnyPodsExists (context , aw )
301- Expect (err ).To (HaveOccurred ())
301+ Expect (err ).NotTo (HaveOccurred ())
302302
303303err = waitAWPodsReady (context , aw )
304304Expect (err ).NotTo (HaveOccurred ())
@@ -326,10 +326,10 @@ var _ = Describe("AppWrapper E2E Test", func() {
326326appwrappers = append (appwrappers , aw2 )
327327
328328err = waitAWAnyPodsExists (context , aw2 )
329- Expect (err ).To (HaveOccurred ())
329+ Expect (err ).NotTo (HaveOccurred ())
330330
331331err = waitAWPodsReady (context , aw2 )
332- Expect (err ).NotTo (HaveOccurred ())
332+ Expect (err ).To (HaveOccurred ())
333333})
334334
335335It ("MCAD Bad Custom Pod Resources vs. Deployment Pod Resource Queuing Test 2" , func () {
@@ -353,7 +353,7 @@ var _ = Describe("AppWrapper E2E Test", func() {
353353appwrappers = append (appwrappers , aw2 )
354354
355355err = waitAWAnyPodsExists (context , aw2 )
356- Expect (err ).NotTo (HaveOccurred ())
356+ Expect (err ).To (HaveOccurred ())
357357
358358})
359359
0 commit comments