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
commit f72318a0ae
1 changed files with 1 additions and 1 deletions

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();
----