Skip to content

Commit 8419038

Browse files
committed
Fixed test issue
1 parent cbaf2e7 commit 8419038

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e/service/BlockService.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { TransactionRepository } from '../../src/infrastructure/TransactionRepos
2020
import { Account } from '../../src/model/account/Account';
2121
import { NetworkType } from '../../src/model/blockchain/NetworkType';
2222
import { PlainMessage } from '../../src/model/message/PlainMessage';
23-
import { NetworkCurrencyMosaic } from '../../src/model/mosaic/NetworkCurrencyMosaic';
23+
import { NetworkCurrencyLocal } from '../../src/model/mosaic/NetworkCurrencyLocal';
2424
import { Deadline } from '../../src/model/transaction/Deadline';
2525
import { TransferTransaction } from '../../src/model/transaction/TransferTransaction';
2626
import { UInt64 } from '../../src/model/UInt64';
@@ -69,7 +69,7 @@ describe('BlockService', () => {
6969
const transferTransaction = TransferTransaction.create(
7070
Deadline.create(),
7171
account2.address,
72-
[NetworkCurrencyMosaic.createAbsolute(1)],
72+
[NetworkCurrencyLocal.createAbsolute(1)],
7373
PlainMessage.create('test-message'),
7474
networkType,
7575
helper.maxFee,

0 commit comments

Comments
 (0)