Skip to content

Commit

Permalink
conformance: fixup gwName -> gwNN
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemorris committed Apr 7, 2022
1 parent 3a10281 commit 7dea9bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conformance/tests/httproute-invalid-reference-policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ var HTTPRouteInvalidReferencePolicy = suite.ConformanceTest{

t.Run("Gateway should have 0 Routes attached", func(t *testing.T) {
gw := &v1alpha2.Gateway{}
err := suite.Client.Get(context.TODO(), gwName, gw)
err := suite.Client.Get(context.TODO(), gwNN, gw)
require.NoError(t, err, "error fetching Gateway")
// There are two valid ways to represent this:
// 1. No listeners in status
Expand Down
2 changes: 1 addition & 1 deletion conformance/tests/httproute-missing-reference-policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ var HTTPRouteMissingReferencePolicy = suite.ConformanceTest{

t.Run("Gateway should have 0 Routes attached", func(t *testing.T) {
gw := &v1alpha2.Gateway{}
err := suite.Client.Get(context.TODO(), gwName, gw)
err := suite.Client.Get(context.TODO(), gwNN, gw)
require.NoError(t, err, "error fetching Gateway")
// There are two valid ways to represent this:
// 1. No listeners in status
Expand Down

0 comments on commit 7dea9bc

Please sign in to comment.