mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 06:12:20 +08:00
OpenAPI: Fix ValidationError
message attribute (#90846)
It's `message`, not `msg`. It's been fixed for a while here: 9ef6983612/scripts/pull-schema.sh (L46-L49)
I've also reflected the change in the tests
This commit is contained in:
@ -99,8 +99,10 @@ func TestProvisioningApi(t *testing.T) {
|
||||
response := sut.RoutePutPolicyTree(&rc, tree)
|
||||
|
||||
require.Equal(t, 400, response.Status())
|
||||
expBody := `{"message":"invalid object specification: invalid policy tree"}`
|
||||
require.Equal(t, expBody, string(response.Body()))
|
||||
expBody := definitions.ValidationError{Message: "invalid object specification: invalid policy tree"}
|
||||
expBodyJSON, marshalErr := json.Marshal(expBody)
|
||||
require.NoError(t, marshalErr)
|
||||
require.Equal(t, string(expBodyJSON), string(response.Body()))
|
||||
})
|
||||
})
|
||||
|
||||
|
@ -4380,7 +4380,7 @@
|
||||
},
|
||||
"ValidationError": {
|
||||
"properties": {
|
||||
"msg": {
|
||||
"message": {
|
||||
"example": "error message",
|
||||
"type": "string"
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ type Ack struct{}
|
||||
// swagger:model
|
||||
type ValidationError struct {
|
||||
// example: error message
|
||||
Msg string `json:"msg"`
|
||||
Message string `json:"message"`
|
||||
}
|
||||
|
||||
// swagger:model
|
||||
|
@ -4379,7 +4379,7 @@
|
||||
},
|
||||
"ValidationError": {
|
||||
"properties": {
|
||||
"msg": {
|
||||
"message": {
|
||||
"example": "error message",
|
||||
"type": "string"
|
||||
}
|
||||
|
@ -8013,7 +8013,7 @@
|
||||
"ValidationError": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"msg": {
|
||||
"message": {
|
||||
"type": "string",
|
||||
"example": "error message"
|
||||
}
|
||||
|
@ -21969,7 +21969,7 @@
|
||||
"ValidationError": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"msg": {
|
||||
"message": {
|
||||
"type": "string",
|
||||
"example": "error message"
|
||||
}
|
||||
|
@ -12027,7 +12027,7 @@
|
||||
},
|
||||
"ValidationError": {
|
||||
"properties": {
|
||||
"msg": {
|
||||
"message": {
|
||||
"example": "error message",
|
||||
"type": "string"
|
||||
}
|
||||
|
Reference in New Issue
Block a user