You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by zh...@apache.org on 2021/11/12 01:39:01 UTC

[apisix-ingress-controller] branch master updated: fix: wrong var type in response_rewrite e2e (#754)

This is an automated email from the ASF dual-hosted git repository.

zhangjintao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


The following commit(s) were added to refs/heads/master by this push:
     new 62b7162  fix: wrong var type in response_rewrite e2e (#754)
62b7162 is described below

commit 62b71628fb621a6625400e3ebc6847c21000d563
Author: Nic <pr...@gmail.com>
AuthorDate: Fri Nov 12 09:38:54 2021 +0800

    fix: wrong var type in response_rewrite e2e (#754)
---
 test/e2e/plugins/response_rewrite.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/e2e/plugins/response_rewrite.go b/test/e2e/plugins/response_rewrite.go
index e44ac19..2047e4e 100644
--- a/test/e2e/plugins/response_rewrite.go
+++ b/test/e2e/plugins/response_rewrite.go
@@ -182,7 +182,7 @@ spec:
          location: https://a.com/b/c
          x-changed-by: apisix
        vars:
-       - ["status", "==", "200"]
+       - ["status", "==", 200]
 `, backendSvc, backendPorts[0])
 
 		assert.Nil(ginkgo.GinkgoT(), s.CreateResourceFromString(ar))