Fix source code in doc

Closes gh-1640
This commit is contained in:
Toshiaki Maki
2018-01-10 02:40:15 +09:00
committed by Stephane Nicoll
parent 9c7de232b8
commit 50b46c9e35

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