Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/Percona-Lab/percona-version-service/api v0.0.0-20201216104127-a39f2dded3cc
github.com/caarlos0/env v3.5.0+incompatible
github.com/cert-manager/cert-manager v1.20.2
github.com/flosch/pongo2/v6 v6.0.0
github.com/flosch/pongo2/v6 v6.1.0
github.com/go-ini/ini v1.67.0
github.com/go-logr/logr v1.4.3
github.com/go-logr/zapr v1.3.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ github.com/evanphx/json-patch v5.9.0+incompatible h1:fBXyNpNMuTTDdquAq/uisOr2lSh
github.com/evanphx/json-patch v5.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk=
github.com/evanphx/json-patch/v5 v5.9.11 h1:/8HVnzMq13/3x9TPvjG08wUGqBTmZBsCWzjTM0wiaDU=
github.com/evanphx/json-patch/v5 v5.9.11/go.mod h1:3j+LviiESTElxA4p3EMKAB9HXj3/XEtnUf6OZxqIQTM=
github.com/flosch/pongo2/v6 v6.0.0 h1:lsGru8IAzHgIAw6H2m4PCyleO58I40ow6apih0WprMU=
github.com/flosch/pongo2/v6 v6.0.0/go.mod h1:CuDpFm47R0uGGE7z13/tTlt1Y6zdxvr2RLT5LJhsHEU=
github.com/flosch/pongo2/v6 v6.1.0 h1:A/NJbrQJJD2B2mbpw3DRFwBYG0xpCr3vwFlEr46y1HQ=
github.com/flosch/pongo2/v6 v6.1.0/go.mod h1:CuDpFm47R0uGGE7z13/tTlt1Y6zdxvr2RLT5LJhsHEU=
github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8=
github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0=
github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S9k=
Expand Down
8 changes: 4 additions & 4 deletions pkg/apis/pxc/v1/pxc_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ func TestExecuteConfigurationTemplate(t *testing.T) {
},
},
},
expectError: "sandbox restriction active",
expectError: "tag is banned for this template set",
},
"include tag is blocked": {
pod: PodSpec{
Expand All @@ -787,7 +787,7 @@ func TestExecuteConfigurationTemplate(t *testing.T) {
},
},
},
expectError: "sandbox restriction active",
expectError: "tag is banned for this template set",
},
"import tag is blocked": {
pod: PodSpec{
Expand All @@ -798,7 +798,7 @@ func TestExecuteConfigurationTemplate(t *testing.T) {
},
},
},
expectError: "sandbox restriction active",
expectError: "tag is banned for this template set",
},
"extends tag is blocked": {
pod: PodSpec{
Expand All @@ -809,7 +809,7 @@ func TestExecuteConfigurationTemplate(t *testing.T) {
},
},
},
expectError: "sandbox restriction active",
expectError: "tag is banned for this template set",
},
"invalid template syntax": {
pod: PodSpec{
Expand Down