e2e: rename some cases name to make it sync with others (#344)

This commit is contained in:
Xunzhuo
2023-05-22 11:05:22 +08:00
committed by GitHub
parent 9734ffeb3e
commit d48e0ce773
2 changed files with 6 additions and 6 deletions

View File

@@ -23,11 +23,11 @@ import (
)
func init() {
HigressConformanceTests = append(HigressConformanceTests, HTTPFORCEREDIRCTHTTPS)
HigressConformanceTests = append(HigressConformanceTests, HttpForceRedirectHttps)
}
var HTTPFORCEREDIRCTHTTPS = suite.ConformanceTest{
ShortName: "HTTPFORCEREDIRCTHTTPS",
var HttpForceRedirectHttps = suite.ConformanceTest{
ShortName: "HttpForceRedirectHttps",
Description: " The ingress in the higress-conformance-infra namespace enforces server-side HTTPS with forced redirection.",
Manifests: []string{"tests/httproute-force-redirect-https.yaml"},
Test: func(t *testing.T, suite *suite.ConformanceTestSuite) {

View File

@@ -23,11 +23,11 @@ import (
)
func init() {
HigressConformanceTests = append(HigressConformanceTests, HTTPREDIRCTASHTTPS)
HigressConformanceTests = append(HigressConformanceTests, HttpRedirectAsHttps)
}
var HTTPREDIRCTASHTTPS = suite.ConformanceTest{
ShortName: "HTTPREDIRCTASHTTPS",
var HttpRedirectAsHttps = suite.ConformanceTest{
ShortName: "HttpRedirectAsHttps",
Description: "The Ingress in the higress-conformance-infra namespace Server-side HTTPS enforcement through redirect.",
Manifests: []string{"tests/httproute-redirct-as-https.yaml"},
Test: func(t *testing.T, suite *suite.ConformanceTestSuite) {