Skip to content

Commit 475bf16

Browse files
committedNov 8, 2023
Tests: increase flaky text test range even further
1 parent 67f49a8 commit 475bf16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/unit/text.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe('Text to image', function () {
6060
assert.strictEqual(3, info.channels);
6161
assert.ok(inRange(info.width, 400, 600), `Actual width ${info.width}`);
6262
assert.ok(inRange(info.height, 300, 500), `Actual height ${info.height}`);
63-
assert.ok(inRange(info.textAutofitDpi, 900, 1200), `Actual textAutofitDpi ${info.textAutofitDpi}`);
63+
assert.ok(inRange(info.textAutofitDpi, 900, 1300), `Actual textAutofitDpi ${info.textAutofitDpi}`);
6464
done();
6565
});
6666
});

0 commit comments

Comments
 (0)
Please sign in to comment.