Skip to content

Commit c521b26

Browse files
committed
Fix admin OPA versions list tests
1 parent ab15c66 commit c521b26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

admin_opa_version_integration_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func TestAdminOPAVersions_List(t *testing.T) {
6666

6767
t.Run("with filter query string", func(t *testing.T) {
6868
oList, err := client.Admin.OPAVersions.List(ctx, &AdminOPAVersionsListOptions{
69-
Filter: "0.46.1",
69+
Filter: "0.59.0",
7070
})
7171
require.NoError(t, err)
7272
assert.Equal(t, 1, len(oList.Items))
@@ -80,7 +80,7 @@ func TestAdminOPAVersions_List(t *testing.T) {
8080
})
8181

8282
t.Run("with search version query string", func(t *testing.T) {
83-
searchVersion := "0.46.1"
83+
searchVersion := "0.59.0"
8484
oList, err := client.Admin.OPAVersions.List(ctx, &AdminOPAVersionsListOptions{
8585
Search: searchVersion,
8686
})

0 commit comments

Comments
 (0)