Skip to content

Commit

Permalink
tests: restrict diff test scope to avoid failure due to schema changes
Browse files Browse the repository at this point in the history
  • Loading branch information
GGabriele committed Jul 19, 2023
1 parent e337551 commit ab90fbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/diff_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ func Test_Diff_Masked_NewerThan3x(t *testing.T) {
for k, v := range tc.envVars {
t.Setenv(k, v)
}
runWhen(t, "kong", ">=3.1.0")
runWhen(t, "kong", ">=3.1.0 <3.4.0")
teardown := setup(t)
defer teardown(t)

Expand Down Expand Up @@ -740,7 +740,7 @@ func Test_Diff_Unmasked_NewerThan3x(t *testing.T) {
for k, v := range tc.envVars {
t.Setenv(k, v)
}
runWhen(t, "kong", ">=3.1.0")
runWhen(t, "kong", ">=3.1.0 <3.4.0")
teardown := setup(t)
defer teardown(t)

Expand Down

0 comments on commit ab90fbb

Please sign in to comment.