Skip to content

Commit 9925caf

Browse files
committed
fix: r
Signed-off-by: Ashing Zheng <[email protected]>
1 parent 6301638 commit 9925caf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/e2e/crds/v2/status.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ spec:
157157
})
158158

159159
It("dataplane unavailable", func() {
160-
if os.Getenv("PROVIDER_TYPE") == adc.BackendModeAPI7EE {
161-
Skip("skip for api7ee mode because it use dashboard admin api")
160+
if os.Getenv("PROVIDER_TYPE") != adc.BackendModeAPISIXStandalone {
161+
Skip("only for apisix standalone mode")
162162
}
163163
By("apply ApisixRoute")
164164
applier.MustApplyAPIv2(types.NamespacedName{Namespace: s.Namespace(), Name: "default"}, &apiv2.ApisixRoute{}, ar)

test/e2e/gatewayapi/status.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ spec:
112112
})
113113

114114
It("dataplane unavailable", func() {
115-
if os.Getenv("PROVIDER_TYPE") == adc.BackendModeAPI7EE {
116-
Skip("skip for api7ee mode because it use dashboard admin api")
115+
if os.Getenv("PROVIDER_TYPE") != adc.BackendModeAPISIXStandalone {
116+
Skip("only for apisix standalone mode")
117117
}
118118
By("Create HTTPRoute")
119119
err := s.CreateResourceFromString(httproute)

0 commit comments

Comments
 (0)