Skip to content

Commit 970b554

Browse files
committed
improve test name - show actual value for UINT31_MAX
1 parent 0148d40 commit 970b554

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/types.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe('types', () => {
6868
assert.strictEqual(types.UInt31(-UINT31_MAX), false);
6969
});
7070

71-
it('return false for values > UINT31_MAX', () => {
71+
it(`return false for value > ${UINT31_MAX}`, () => {
7272
assert.strictEqual(types.UInt31(UINT31_MAX + 1), false);
7373
});
7474
});

0 commit comments

Comments
 (0)