Skip to content

Commit

Permalink
test: bump runtime version in integration test switch condition
Browse files Browse the repository at this point in the history
  • Loading branch information
rflechtner committed Aug 21, 2023
1 parent bbda52b commit 1535a85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/ErrorHandler.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ beforeAll(async () => {
it('records an extrinsic error when transferring less than the existential amount to new identity', async () => {
const transferTx = api.tx.balances.transfer(addressFromRandom(), 1)
const promise = submitTx(transferTx, paymentAccount)
if (api.runtimeVersion.specVersion.toBigInt() > 11_000n) {
if (api.runtimeVersion.specVersion.toBigInt() >= 11_200n) {
await expect(promise).rejects.toMatchInlineSnapshot(`
{
"token": "BelowMinimum",
Expand Down

0 comments on commit 1535a85

Please sign in to comment.