Use assert.fail instead of comparing false and true

GitOrigin-RevId: c6cbaf0a424771cf2a037366fccd790a13d9b1bb
This commit is contained in:
Andrew Rumble
2025-04-25 11:29:57 +01:00
committed by Copybot
parent 2ad9f36706
commit 2c3eed8d96

View File

@@ -1,4 +1,4 @@
const { expect } = require('chai')
const { assert, expect } = require('chai')
const sinon = require('sinon')
const modulePath = '../../../../app/src/Features/Subscription/RecurlyWrapper'
const SandboxedModule = require('sandboxed-module')
@@ -319,7 +319,7 @@ describe('RecurlyWrapper', function () {
this.recurlyAccountId,
this.newEmail
)
expect(false).to.equal(true) // Fail if we don't have an error
assert.fail('Expected error not thrown')
} catch (error) {
expect(error).to.have.property('message')
expect(error.message.startsWith('Invalid character')).to.be.true