From 650a8c7a4fa3299d8afdcd195b4b842de3dc7ea6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Gonc=CC=A7alves?= Date: Tue, 12 Mar 2024 23:17:52 +0000 Subject: [PATCH] pm-5273 Fix versions --- .../35-move-local-data-to-state-provider.spec.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/common/src/state-migrations/migrations/35-move-local-data-to-state-provider.spec.ts b/libs/common/src/state-migrations/migrations/35-move-local-data-to-state-provider.spec.ts index 1000f14caa..54b09183bb 100644 --- a/libs/common/src/state-migrations/migrations/35-move-local-data-to-state-provider.spec.ts +++ b/libs/common/src/state-migrations/migrations/35-move-local-data-to-state-provider.spec.ts @@ -80,8 +80,8 @@ describe("LocalDataMigrator", () => { describe("migrate", () => { beforeEach(() => { - helper = mockMigrationHelper(exampleJSON(), 23); - sut = new LocalDataMigrator(22, 23); + helper = mockMigrationHelper(exampleJSON(), 35); + sut = new LocalDataMigrator(34, 35); }); it("should remove local data from all accounts", async () => { @@ -105,8 +105,8 @@ describe("LocalDataMigrator", () => { describe("rollback", () => { beforeEach(() => { - helper = mockMigrationHelper(rollbackJSON(), 23); - sut = new LocalDataMigrator(22, 23); + helper = mockMigrationHelper(rollbackJSON(), 35); + sut = new LocalDataMigrator(34, 35); }); it.each(["user-1", "user-2"])("should null out new values", async (userId) => {