"frontend/vscode:/vscode.git/clone" did not exist on "80ae592c23e3b9624e2e05c8e212501968dc0400"
Commit c9145ad4 authored by erio's avatar erio
Browse files

fix: golangci-lint test assertion and gofmt

parent 3851628a
......@@ -493,7 +493,7 @@ func TestValidatePricingBillingMode(t *testing.T) {
err := validatePricingBillingMode(tt.pricing)
if tt.wantErr {
require.Error(t, err)
require.Contains(t, err.Error(), "Per-request price or intervals required")
require.Contains(t, err.Error(), "per-request price or intervals required")
} else {
require.NoError(t, err)
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment