Fix trailing slash on uploads URL

This commit is contained in:
Koen Vlaswinkel
2024-05-13 16:31:17 +02:00
parent 90e315a7a8
commit 24766fcf56
6 changed files with 19 additions and 6 deletions

View File

@@ -259,7 +259,7 @@ test("Successfully uploading a database to GHEC-DR", async (t) => {
t.assert(
databaseUploadSpy.calledOnceWith(
sinon.match.string,
sinon.match.has("baseUrl", "https://uploads.tenant.ghe.com/"),
sinon.match.has("baseUrl", "https://uploads.tenant.ghe.com"),
),
);
});