Skip to content

Commit 15e4712

Browse files
committed
🔥 Removing unnecessary test
1 parent 2bf49ba commit 15e4712

File tree

1 file changed

+0
-17
lines changed
  • clients/typescript/test/low-level/permissioning

1 file changed

+0
-17
lines changed

clients/typescript/test/low-level/permissioning/world.ts

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -222,22 +222,5 @@ export function world(framework) {
222222
}
223223
expect(invalid).to.equal(true);
224224
});
225-
226-
it("Check invalid component update without CPI", async () => {
227-
let invalid = false;
228-
try {
229-
await framework.exampleComponentPosition.methods
230-
.update(Buffer.from(""))
231-
.accounts({
232-
boltComponent: framework.componentPositionEntity4Pda,
233-
authority: framework.provider.wallet.publicKey,
234-
})
235-
.rpc();
236-
} catch (error) {
237-
expect(error.message).to.contain("Error Code: InvalidCaller");
238-
invalid = true;
239-
}
240-
expect(invalid).to.equal(true);
241-
});
242225
});
243226
}

0 commit comments

Comments
 (0)