Skip to content

Commit ccd2432

Browse files
committed
Tidy up e2e test
1 parent ad358e6 commit ccd2432

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

e2e/infrastructure/AccountHttp.spec.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,9 +396,9 @@ describe('AccountHttp', () => {
396396
account.address,
397397
NetworkType.MIJIN_TEST,
398398
);
399-
const signedTransaction = addressAliasTransaction.signWith(account, generationHash);
399+
const signedTransaction = addressAliasTransaction.signWith(account);
400400

401-
listener.confirmed(account.address).subscribe(() => {
401+
listener.confirmed(account.address).subscribe((transaction) => {
402402
done();
403403
});
404404
listener.status(account.address).subscribe((error) => {
@@ -409,7 +409,6 @@ describe('AccountHttp', () => {
409409
transactionHttp.announce(signedTransaction);
410410
});
411411
});
412-
413412
describe('Remove test AccountProperty - Address', () => {
414413
let listener: Listener;
415414
before (() => {

0 commit comments

Comments
 (0)