Skip to content

Commit ba08a78

Browse files
차지훈wilkinsona
차지훈
authored andcommitted
Fix typo in REST Assured HTTP headers example
See gh-579
1 parent 1675795 commit ba08a78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/test/java/com/example/restassured/HttpHeaders.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public void headers() throws Exception {
4343
"Remaining requests permitted in current period"),
4444
headerWithName("X-RateLimit-Reset").description(
4545
"Time at which the rate limit period will reset"))))
46-
.header("Authroization", "Basic dXNlcjpzZWNyZXQ=") // <4>
46+
.header("Authorization", "Basic dXNlcjpzZWNyZXQ=") // <4>
4747
.when().get("/people")
4848
.then().assertThat().statusCode(is(200));
4949
// end::headers[]

0 commit comments

Comments
 (0)