Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
crufter committed Nov 15, 2023
1 parent 18a3688 commit a5d2a21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/service/keyvalue/kv.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ describe("keyvalue", () => {
token: tok1,
value: {
key: "publicKey1",
namespace: "test",
namespace: "test2",
public: true,
value: { data: "value1" },
},
Expand All @@ -198,7 +198,7 @@ describe("keyvalue", () => {
token: tok1,
value: {
key: "publicKey2",
namespace: "test",
namespace: "test2",
public: true,
value: { data: "value2" },
},
Expand All @@ -215,7 +215,7 @@ describe("keyvalue", () => {
token: tok1,
value: {
key: "privateKey1",
namespace: "test",
namespace: "test3",
public: false,
value: { data: "value1" },
},
Expand All @@ -228,7 +228,7 @@ describe("keyvalue", () => {
test("unauthorized access to private values", async () => {
let listRspNoToken = await serv.list({ namespace: "test" });
let listRspInvalidToken = await serv.list({
namespace: "test",
namespace: "test3",
token: "invalidtoken",
});

Expand Down

0 comments on commit a5d2a21

Please sign in to comment.