Skip to content

Commit

Permalink
Fix delete call to use username
Browse files Browse the repository at this point in the history
  • Loading branch information
burmanm committed Nov 12, 2024
1 parent 05ada6b commit 55723ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public void testSuperuserWasNotSet() throws IOException {

Boolean roleDropped =
client
.delete(URI.create(BASE_PATH + "/ops/auth/role").toURL())
.delete(URI.create(BASE_PATH + "/ops/auth/role?username=authtest").toURL())
.thenApply(r -> r.status().code() == HttpStatus.SC_OK)
.join();

Expand Down

0 comments on commit 55723ff

Please sign in to comment.