Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
x86-39 committed Nov 16, 2023
1 parent 9b2386c commit ca6e9ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/kotlin/dev/queercoded/webring/SiteResourceTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ class SiteResourceTest {

.get("/next?source=test-site-c.example.com")
.then()
.statusCode(301)
.statusCode(307)
}

@Test
Expand All @@ -284,7 +284,7 @@ class SiteResourceTest {
RestAssured.config().redirect(RedirectConfig.redirectConfig().followRedirects(false)))
.get("/prev?source=test-site-c.example.com")
.then()
.statusCode(301)
.statusCode(307)
}

@Test
Expand Down

0 comments on commit ca6e9ad

Please sign in to comment.