Skip to content

Commit 50ddd7c

Browse files
j-s-nJason Kuroda
andauthored
removed sort from sequence range test (#5705)
Co-authored-by: Jason Kuroda <[email protected]>
1 parent 820e9d3 commit 50ddd7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ironfish/src/rpc/routes/wallet/getAccountTransactions.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ describe('Route wallet/getAccountTransactions', () => {
114114
block3.transactions[0].hash(),
115115
]
116116
const accountTransactions = await AsyncUtils.materialize(response.contentStream())
117-
const accountTransactionHashes = accountTransactions
118-
.map(({ hash }) => Buffer.from(hash, 'hex'))
119-
.sort()
117+
const accountTransactionHashes = accountTransactions.map(({ hash }) =>
118+
Buffer.from(hash, 'hex'),
119+
)
120120

121121
expect(accountTransactionHashes).toEqual(blockTransactionHashes)
122122
})

0 commit comments

Comments
 (0)