mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
tests: Fix accidental functions in ordered_list.js
This fixes a bug introduced in commit
e9bb2c410e
.
This commit is contained in:
parent
4c6a12ce2b
commit
714e099b2a
1 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ describe('ordered_list.js', function () {
|
|||
// TODO: Re-throw non-"condition never became true" errors to avoid false positives.
|
||||
}
|
||||
// This will fail if the above `waitForPromise()` succeeded.
|
||||
expect(() => helper.padInner$('body').html()).to.be(originalHTML);
|
||||
expect(helper.padInner$('body').html()).to.be(originalHTML);
|
||||
});
|
||||
|
||||
it('does not insert unordered list', function (done) {
|
||||
|
@ -93,7 +93,7 @@ describe('ordered_list.js', function () {
|
|||
// TODO: Re-throw non-"condition never became true" errors to avoid false positives.
|
||||
}
|
||||
// This will fail if the above `waitForPromise()` succeeded.
|
||||
expect(() => helper.padInner$('body').html()).to.be(originalHTML);
|
||||
expect(helper.padInner$('body').html()).to.be(originalHTML);
|
||||
});
|
||||
|
||||
it('does not insert unordered list', function (done) {
|
||||
|
|
Loading…
Reference in a new issue