diff options
Diffstat (limited to 'std/fmt/sprintf_test.ts')
-rw-r--r-- | std/fmt/sprintf_test.ts | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/std/fmt/sprintf_test.ts b/std/fmt/sprintf_test.ts index 26757c3cc..4d3a48c68 100644 --- a/std/fmt/sprintf_test.ts +++ b/std/fmt/sprintf_test.ts @@ -587,16 +587,18 @@ const tests: Array<[string, any, string]> = [ ]; test(function testThorough(): void { - tests.forEach((t, i): void => { - // p(t) - const is = S(t[0], t[1]); - const should = t[2]; - assertEquals( - is, - should, - `failed case[${i}] : is >${is}< should >${should}<` - ); - }); + tests.forEach( + (t, i): void => { + // p(t) + const is = S(t[0], t[1]); + const should = t[2]; + assertEquals( + is, + should, + `failed case[${i}] : is >${is}< should >${should}<` + ); + } + ); }); test(function testWeirdos(): void { |