Improve exception message

Issue: SPR-12230
This commit is contained in:
Rossen Stoyanchev 2014-11-05 17:32:39 -05:00
parent e9dee82a8d
commit 7f4bf41c23
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ public class MockRestServiceServer {
this.requestIterator = MockRestServiceServer.this.expectedRequests.iterator(); this.requestIterator = MockRestServiceServer.this.expectedRequests.iterator();
} }
if (!this.requestIterator.hasNext()) { if (!this.requestIterator.hasNext()) {
throw new AssertionError("No further requests expected"); throw new AssertionError("No further requests expected: HTTP " + httpMethod + " " + uri);
} }
RequestMatcherClientHttpRequest request = this.requestIterator.next(); RequestMatcherClientHttpRequest request = this.requestIterator.next();