Skip to content

Commit af1e80a

Browse files
committed
fix: typo fixes
1 parent 13039ae commit af1e80a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/procedures/__tests__/TransferReservationOwnership.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ describe('TransferReservationOwnership', () => {
9898
);
9999
});
100100

101-
test('should throw error if current wallet is not the reservation ticker owner', async () => {
101+
test('should throw error if current wallet is not the reservation owner', async () => {
102102
await expect(target.prepareTransactions()).rejects.toThrowError(
103103
new PolymathError({
104104
code: ErrorCode.ProcedureValidationError,
@@ -107,7 +107,7 @@ describe('TransferReservationOwnership', () => {
107107
);
108108
});
109109

110-
test('should throw error if new owner is equals to the current one', async () => {
110+
test('should throw error if new owner is equal to the current one', async () => {
111111
contextMock.set('currentWallet', new Wallet({ address: () => Promise.resolve('0x01') }));
112112

113113
target = new TransferReservationOwnership(
@@ -123,7 +123,7 @@ describe('TransferReservationOwnership', () => {
123123
);
124124
});
125125

126-
test('should add a transaction to the queue to change the transfer reservation ownership', async () => {
126+
test('should add a transaction to the queue to transfer ownership of the reservation', async () => {
127127
contextMock.set('currentWallet', new Wallet({ address: () => Promise.resolve('0x01') }));
128128

129129
const addTransactionSpy = spy(target, 'addTransaction');

0 commit comments

Comments
 (0)