Skip to content

Commit

Permalink
feat(kafka_quota): changed request_percentage field to float type
Browse files Browse the repository at this point in the history
  • Loading branch information
vmyroslav committed Jan 8, 2025
1 parent 660fc45 commit c756569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/sdkprovider/service/kafka/kafka_quota_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ resource "aiven_kafka_quota" "{{ .resource_name }}" {
"request_percentage": 101, // invalid value
}).
MustRender(t),
ExpectError: regexp.MustCompile(`expected .+ to be in the range \(\d+ - \d+\), got \d+`),
ExpectError: regexp.MustCompile(`expected .+ to be in the range \([\d.]+ - [\d.]+\), got [\d.]+`),
},
{
// missing user and client_id
Expand Down

0 comments on commit c756569

Please sign in to comment.