Skip to content

Commit 303656c

Browse files
committed
Merge pull request spring-projects#579 from jhchv
* spring-projectsgh-579: Fix typo in REST Assured HTTP headers example Closes spring-projectsgh-579
2 parents 1675795 + ba08a78 commit 303656c

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)