Skip to content

Commit 0d21737

Browse files
committed
Fixed typo
1 parent 600d14a commit 0d21737

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/model/receipt/Statement.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ describe('Statement', () => {
107107
};
108108
});
109109

110-
it('should get reolved address from receipt', () => {
110+
it('should get resolved address from receipt', () => {
111111
const unresolvedAddress = UnresolvedMapping.toUnresolvedAddress('9156258DE356F030A500000000000000000000000000000000');
112112
const statement = CreateStatementFromDTO(statementDTO, NetworkType.MIJIN_TEST);
113113
const resolved = statement.resolveAddress(unresolvedAddress as NamespaceId, '1473', 0);
@@ -116,7 +116,7 @@ describe('Statement', () => {
116116
expect((resolved as Address).equals(account.address)).to.be.true;
117117
});
118118

119-
it('should get reolved address from receipt without Harvesting_Fee', () => {
119+
it('should get resolved address from receipt without Harvesting_Fee', () => {
120120
const statementWithoutHarvesting = {
121121
transactionStatements: [],
122122
addressResolutionStatements: [
@@ -146,7 +146,7 @@ describe('Statement', () => {
146146
expect((resolved as Address).equals(account.address)).to.be.true;
147147
});
148148

149-
it('should get reolved mosaic from receipt', () => {
149+
it('should get resolved mosaic from receipt', () => {
150150
const unresolvedMosaic = UnresolvedMapping.toUnresolvedMosaic('E81F622A5B11A340');
151151
const statement = CreateStatementFromDTO(statementDTO, NetworkType.MIJIN_TEST);
152152
const resolved = statement.resolveMosaicId(unresolvedMosaic as NamespaceId, '1473', 0);
@@ -155,7 +155,7 @@ describe('Statement', () => {
155155
expect((resolved as MosaicId).equals(new MosaicId('756482FB80FD406C'))).to.be.true;
156156
});
157157

158-
it('should get reolved mosaic from receipt without Harvesting_Fee', () => {
158+
it('should get resolved mosaic from receipt without Harvesting_Fee', () => {
159159
const statementWithoutHarvesting = {
160160
transactionStatements: [],
161161
addressResolutionStatements: [],

0 commit comments

Comments
 (0)