Registry testing - part 12

This commit is contained in:
Maurus Decimus
2026-03-22 17:17:11 +01:00
parent 21c541e505
commit 944505a925
101 changed files with 2114 additions and 2823 deletions

View File

@@ -279,7 +279,10 @@ impl Account {
.default_headers(headers)
.build()
.unwrap()
.post("https://127.0.0.1:8899/jmap")
.post(format!(
"https://127.0.0.1:{}/jmap",
self.http_listener_port
))
.body(body.to_string())
.send()
.await
@@ -312,7 +315,10 @@ impl Account {
.default_headers(headers)
.build()
.unwrap()
.get("https://127.0.0.1:8899/jmap/session")
.get(format!(
"https://127.0.0.1:{}/jmap/session",
self.http_listener_port
))
.send()
.await
.unwrap()