Fix typo in REST Assured HTTP headers example

See gh-579
This commit is contained in:
차지훈
2019-02-14 16:58:55 +09:00
committed by Andy Wilkinson
parent 1675795960
commit ba08a78710

View File

@@ -43,7 +43,7 @@ public class HttpHeaders {
"Remaining requests permitted in current period"),
headerWithName("X-RateLimit-Reset").description(
"Time at which the rate limit period will reset"))))
.header("Authroization", "Basic dXNlcjpzZWNyZXQ=") // <4>
.header("Authorization", "Basic dXNlcjpzZWNyZXQ=") // <4>
.when().get("/people")
.then().assertThat().statusCode(is(200));
// end::headers[]