We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bf49ba commit 15e4712Copy full SHA for 15e4712
clients/typescript/test/low-level/permissioning/world.ts
@@ -222,22 +222,5 @@ export function world(framework) {
222
}
223
expect(invalid).to.equal(true);
224
});
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
- });
242
243
0 commit comments