From 7505c9498609f935e23365fc740e4959b9fd2f01 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Fri, 6 Mar 2026 16:53:25 +0200 Subject: [PATCH] test fix --- test/unit/specs/stores/sync_config.spec.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/unit/specs/stores/sync_config.spec.js b/test/unit/specs/stores/sync_config.spec.js index b065bede9..9aed6193b 100644 --- a/test/unit/specs/stores/sync_config.spec.js +++ b/test/unit/specs/stores/sync_config.spec.js @@ -493,11 +493,6 @@ describe('The SyncConfig store', () => { }) describe('_resetFlags', () => { - it('should reset all known flags to 0 when reset flag is set to > 0 and < 9000', () => { - const totalFlags = { a: 0, b: 3, reset: 1 } - - expect(_resetFlags(totalFlags)).to.eql({ a: 0, b: 0, reset: 0 }) - }) it('should trim all flags to known when reset is set to 1000', () => { const totalFlags = { a: 0, b: 3, c: 33, reset: COMMAND_TRIM_FLAGS }