Skip to content

Commit

Permalink
test: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
porcellus committed Sep 20, 2023
1 parent cf864c3 commit 34b33f3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/end-to-end/multitenancy.tenant_interactions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1365,7 +1365,10 @@ async function removeUserFromTenant(appId, tenantId, userId) {
async function removeTenant(appId, tenantId) {
let coreResp = await fetch(`http://localhost:9000/appid-${appId}/recipe/multitenancy/tenant/remove`, {
method: "POST",
headers: new Headers([["rid", "multitenancy"][("cdi-version", "3.0")]]),
headers: new Headers([
["rid", "multitenancy"],
["cdi-version", "3.0"],
]),
body: JSON.stringify({
tenantId,
}),
Expand Down

0 comments on commit 34b33f3

Please sign in to comment.