Skip to content

Commit

Permalink
Tests: increase flaky text test range even further
Browse files Browse the repository at this point in the history
  • Loading branch information
lovell committed Nov 8, 2023
1 parent 67f49a8 commit 475bf16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/text.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ describe('Text to image', function () {
assert.strictEqual(3, info.channels);
assert.ok(inRange(info.width, 400, 600), `Actual width ${info.width}`);
assert.ok(inRange(info.height, 300, 500), `Actual height ${info.height}`);
assert.ok(inRange(info.textAutofitDpi, 900, 1200), `Actual textAutofitDpi ${info.textAutofitDpi}`);
assert.ok(inRange(info.textAutofitDpi, 900, 1300), `Actual textAutofitDpi ${info.textAutofitDpi}`);
done();
});
});
Expand Down

0 comments on commit 475bf16

Please sign in to comment.