We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 470ce22 commit 05c368aCopy full SHA for 05c368a
codegen/src/test/java/software/amazon/awssdk/codegen/CodeGeneratorTest.java
@@ -226,7 +226,8 @@ void execute_operationHasNoRequestUri_throwsValidationError() throws IOException
226
.matches(e -> ((ModelInvalidException) e).validationEntries().get(0).getErrorId()
227
== ValidationErrorId.REQUEST_URI_NOT_FOUND)
228
.matches(e -> ((ModelInvalidException) e).validationEntries().get(0).getDetailMessage()
229
- .contains("OperationWithUriMappedParamRequest"));
+ .equals("Operation referencing input shape 'OperationWithUriMappedParamRequest'"
230
+ + " has no requestUri configured in its HTTP binding."));
231
}
232
233
private void generateCodeFromC2jModels(C2jModels c2jModels, Path outputDir) {
0 commit comments