Skip to content

Commit 4eb354f

Browse files
committed
test(plugin-security): drop two unused bindings the test-layer typecheck flagged
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ARYe3yQTQCUFm5qPYNgKaJ
1 parent daab178 commit 4eb354f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/plugins/plugin-security/src/read-fault-distinguishability.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ async function boot(): Promise<ObjectQL> {
107107
*/
108108
function withFault(engine: any, overrides: Record<string, (...args: any[]) => any>): any {
109109
return new Proxy(engine, {
110-
get(target, prop, receiver) {
110+
get(target, prop) {
111111
const key = String(prop);
112112
if (Object.prototype.hasOwnProperty.call(overrides, key)) return overrides[key];
113113
const value = Reflect.get(target, prop, target);
@@ -216,7 +216,7 @@ describe('[#15840] reading 2 — auto-org-admin-grant tryFind', () => {
216216
it('a control: the demotion revoke DOES land when the grant table is readable', async () => {
217217
const engine = await boot();
218218
await seedStandingGrantAwaitingRevoke(engine);
219-
const { lines, logger } = recordingLogger();
219+
const { logger } = recordingLogger();
220220

221221
const res = await reconcileOrgAdminGrant(engine, ADMIN, ORG, { logger: logger as any });
222222

0 commit comments

Comments
 (0)