Skip to content

Commit 8a8bcaf

Browse files
committed
test: fix errors
1 parent 6e41b44 commit 8a8bcaf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/adena-extension/src/migrates/migrations/v013/storage-migration-v013.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describe('serialized wallet migration V013', () => {
4242
version: 1,
4343
data: mockStorageData,
4444
};
45-
const password = '133';
45+
const password = '123';
4646
const migration = new StorageMigration013();
4747
const result = await migration.up(mockData);
4848

@@ -53,7 +53,6 @@ describe('serialized wallet migration V013', () => {
5353

5454
const serialized = result.data.SERIALIZED;
5555
const decrypted = await decryptAES(serialized, password);
56-
console.log(decrypted);
5756
const wallet = JSON.parse(decrypted);
5857

5958
expect(wallet.accounts).toHaveLength(0);

0 commit comments

Comments
 (0)