Skip to content

Commit 9e90f06

Browse files
fix test naming
1 parent 661edfd commit 9e90f06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/node/long.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ describe('Long', function () {
207207

208208
for (const [testName, str, unsigned, radix, expectedStr] of successInputs) {
209209
context(`when the input is ${testName}`, () => {
210-
it(`should return a input string`, () => {
210+
it(`should return a Long represenation of the input`, () => {
211211
expect(Long.fromStringStrict(str, unsigned, radix).toString(radix)).to.equal(
212212
expectedStr ?? str.toLowerCase()
213213
);

0 commit comments

Comments
 (0)