Merge pull request #1640 from making:patch-2

* pr/1640:
  Fix source code in doc
This commit is contained in:
Stephane Nicoll
2018-01-09 19:17:24 +01:00

View File

@@ -223,7 +223,7 @@ Or if you want to assert there is no response content, use this:
.body(personMono, Person.class)
.exchange()
.expectStatus().isCreated()
.expectBody().isEmpty;
.expectBody().isEmpty();
----