Skip to content

Commit

Permalink
rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome committed May 17, 2024
1 parent b7e80e0 commit 7150136
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/conformance/conformance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package tests
package conformance

import (
"os"
"testing"

. "github.com/onsi/gomega"
"k8s.io/apimachinery/pkg/util/sets"
conf_v1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
"sigs.k8s.io/gateway-api/conformance"
conf_v1 "sigs.k8s.io/gateway-api/conformance/apis/v1"
"sigs.k8s.io/gateway-api/conformance/tests"
"sigs.k8s.io/gateway-api/conformance/utils/flags"
"sigs.k8s.io/gateway-api/conformance/utils/suite"
Expand All @@ -41,14 +41,14 @@ func TestConformance(t *testing.T) {

opts := conformance.DefaultOptions(t)
opts.Implementation = conf_v1.Implementation{
Organization: "nginxinc",
Project: "nginx-gateway-fabric",
URL: "https://github.com/nginxinc/nginx-gateway-fabric",
Version: *flags.ImplementationVersion,
Contact: []string{
"https://github.com/nginxinc/nginx-gateway-fabric/discussions/new/choose",
Organization: "nginxinc",
Project: "nginx-gateway-fabric",
URL: "https://github.com/nginxinc/nginx-gateway-fabric",
Version: *flags.ImplementationVersion,
Contact: []string{
"https://github.com/nginxinc/nginx-gateway-fabric/discussions/new/choose",
},
}
}
opts.ConformanceProfiles = sets.New(suite.GatewayHTTPConformanceProfileName, suite.GatewayGRPCConformanceProfileName)

testSuite, err := suite.NewConformanceTestSuite(opts)
Expand Down

0 comments on commit 7150136

Please sign in to comment.