Skip to content

Commit 62b5d17

Browse files
committed
fix: remove typo from tests
1 parent 60802e8 commit 62b5d17

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/sdk-multichain/src/store/index.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ t.describe(`Store with WebAdapter`, () => {
261261
await t.expect(() => store.getAnonId()).rejects.toThrow();
262262
});
263263

264-
t.it('Should support multiple StoreAdapterWeb instances with different prefixes', async () => {
264+
t.it('Should support multiple StoreAdapterWeb instances with different suffixes', async () => {
265265
// Create two adapters with different store names
266266
const adapter1 = new StoreAdapterWeb('-1');
267267
const adapter2 = new StoreAdapterWeb('-2');
@@ -280,10 +280,10 @@ t.describe(`Store with WebAdapter`, () => {
280280
t.expect(result2).toBe('test-id-2');
281281
});
282282

283-
t.it('Should support multiple concurrent instances of different store names and same dbPrefixe', async () => {
284-
const databasePrefix = '-kv-store';
285-
const sdkAdapter = new StoreAdapterWeb(databasePrefix);
286-
const mwpAdapter = new StoreAdapterWeb(databasePrefix, 'key-value-pairs');
283+
t.it('Should support multiple concurrent instances of different store names and same dbSuffix', async () => {
284+
const databaseSuffix = '-kv-store';
285+
const sdkAdapter = new StoreAdapterWeb(databaseSuffix);
286+
const mwpAdapter = new StoreAdapterWeb(databaseSuffix, 'key-value-pairs');
287287

288288
const store1 = new Store(sdkAdapter);
289289
const store2 = new Store(mwpAdapter);

0 commit comments

Comments
 (0)