Skip to content

Commit 87b515e

Browse files
committed
chore(a3p): fix the lint
1 parent 3bdacf2 commit 87b515e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

a3p-integration/proposals/m:before-next-upgrade/test/vbank-msg-absence.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ test('vbank/MsgSetDenomMetadata message type should not exist', async t => {
2222
// Try to create a proposal with the message type
2323
// If the message type doesn't exist, agd will reject it during validation
2424
const proposalPath = '/tmp/test-vbank-setdenommetadata-proposal.json';
25-
const fs = await import('fs/promises');
25+
const fs = await import('node:fs/promises');
2626
const govModuleAddress = await queryGovModuleAddress();
2727
t.truthy(govModuleAddress, 'gov module address should be discoverable');
2828

a3p-integration/proposals/z:acceptance/test/vbank-setdenommetadata.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ test.serial(
233233
async t => {
234234
const testDenom = 'utestvbank';
235235
const proposalPath = '/tmp/vbank-setdenommetadata-proposal.json';
236-
const fs = await import('fs/promises');
236+
const fs = await import('node:fs/promises');
237237
const govModuleAddress = await queryGovModuleAddress();
238238
t.truthy(govModuleAddress, 'gov module address should be discoverable');
239239

@@ -353,7 +353,7 @@ test.serial(
353353
test.serial('can update existing denom metadata via governance', async t => {
354354
const testDenom = 'utestvbank2';
355355
const proposalPath = '/tmp/vbank-update-metadata-proposal.json';
356-
const fs = await import('fs/promises');
356+
const fs = await import('node:fs/promises');
357357
const govModuleAddress = await queryGovModuleAddress();
358358
t.truthy(govModuleAddress, 'gov module address should be discoverable');
359359

@@ -494,7 +494,7 @@ test.serial(
494494
'SetDenomMetaData with invalid metadata fails validation',
495495
async t => {
496496
const proposalPath = '/tmp/vbank-invalid-metadata-proposal.json';
497-
const fs = await import('fs/promises');
497+
const fs = await import('node:fs/promises');
498498
const govModuleAddress = await queryGovModuleAddress();
499499
t.truthy(govModuleAddress, 'gov module address should be discoverable');
500500

0 commit comments

Comments
 (0)