diff --git a/packages/lib/services/synchronizer/Synchronizer.basics.test.ts b/packages/lib/services/synchronizer/Synchronizer.basics.test.ts index f3c818ac5..044649dfb 100644 --- a/packages/lib/services/synchronizer/Synchronizer.basics.test.ts +++ b/packages/lib/services/synchronizer/Synchronizer.basics.test.ts @@ -486,7 +486,7 @@ describe('Synchronizer.basics', () => { // Then after sync, appMinVersion should be the same as that client version const remoteInfoAfter = await fetchSyncInfo(synchronizer().api()); - expect(remoteInfoBefore.appMinVersion).toBe('0.0.0'); + expect(remoteInfoBefore.appMinVersion).toBe('3.0.0'); expect(remoteInfoAfter.appMinVersion).toBe('100.0.0'); // Now simulates synchronising with an older client version. In that case, it should not be diff --git a/packages/lib/services/synchronizer/syncInfoUtils.test.ts b/packages/lib/services/synchronizer/syncInfoUtils.test.ts index fb63c1ae1..7da965b42 100644 --- a/packages/lib/services/synchronizer/syncInfoUtils.test.ts +++ b/packages/lib/services/synchronizer/syncInfoUtils.test.ts @@ -321,7 +321,7 @@ describe('syncInfoUtils', () => { expect(result.version).toEqual(0); expect(result.ppk).toEqual(null); expect(result.e2ee).toEqual(false); - expect(result.appMinVersion).toEqual('0.0.0'); + expect(result.appMinVersion).toEqual('3.0.0'); expect(result.masterKeys).toEqual([]); Logger.globalLogger.enabled = true;