Skip to content

Commit 43fe778

Browse files
committed
Fixed blockHttp integration test bug
1 parent a57cc4b commit 43fe778

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

e2e/infrastructure/BlockHttp.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ describe('BlockHttp', () => {
8080
const signedTransaction = transferTransaction.signWith(account, generationHash);
8181
helper.announce(signedTransaction).then((transaction) => {
8282
chainHeight = transaction.transactionInfo!.height.toString();
83-
return transaction;
83+
done();
8484
});
8585
});
8686
});

e2e/infrastructure/IntegrationTestHelper.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ export class IntegrationTestHelper {
7777
'../../../catapult-service-bootstrap/build/generated-addresses/addresses.yaml'),
7878
(error: any, yamlData: any) => {
7979
if (error) {
80-
console.log(`catapult-service-bootstrap generated address could not be loaded.
81-
Ignoring and using accounts from network.conf. Error: ${error}`);
80+
console.log(`catapult-service-bootstrap generated address could not be loaded. Ignoring and using accounts from network.conf.`);
8281
return resolve(this);
8382
} else {
8483
const parsedYaml = this.yaml.safeLoad(yamlData);

0 commit comments

Comments
 (0)