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 c13185d commit 22c267aCopy full SHA for 22c267a
test/fixtures/s3-fixture/src/main/java/fixture/s3/S3HttpHandler.java
@@ -373,7 +373,11 @@ public void handle(final HttpExchange exchange) throws IOException {
373
if (blobs.remove("/" + bucket + "/" + blobName) == null) {
374
errorBuilder.append("<Error><Code>NoSuchKey</Code><Key>")
375
.append(blobName)
376
- .append("</Key><Message>")
+ .append("</Key><Message>Blob with path [/")
377
+ .append(bucket)
378
+ .append('/')
379
+ .append(blobName)
380
+ .append("] not found in ")
381
.append(blobs.keySet())
382
.append("</Message><VersionId>")
383
.append(UUIDs.randomBase64UUID())
0 commit comments