We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84f0a89 commit 8342a18Copy full SHA for 8342a18
provider/parameter_test.go
@@ -291,7 +291,7 @@ func TestParameter(t *testing.T) {
291
}
292
293
`,
294
- ExpectError: regexp.MustCompile("cannot have the same name"),
+ ExpectError: regexp.MustCompile("Option names must be unique"),
295
}, {
296
Name: "DuplicateOptionValue",
297
Config: `
@@ -308,7 +308,7 @@ func TestParameter(t *testing.T) {
308
309
310
311
- ExpectError: regexp.MustCompile("cannot have the same value"),
+ ExpectError: regexp.MustCompile("Option values must be unique"),
312
313
Name: "RequiredParameterNoDefault",
314
0 commit comments