Skip to content

Commit cf623d1

Browse files
committed
Fix minor formatting issue
1 parent 3cc3e6e commit cf623d1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/deno/ts/minitz.test.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ Deno.test("Convert to different timezone and back", function () {
1414

1515
Deno.test("Timezone conversion using fromTZISO including negative offset and milliseconds", function () {
1616
const timeInHelsinki = minitz.fromTZISO("2022-09-23T13:52:34.123-03:00", "America/Belem");
17-
assertEquals( timeInHelsinki.toLocaleString("sv-SE", { timeZone: "Europe/Stockholm"}), "2022-09-23 18:52:34");
17+
assertEquals(
18+
timeInHelsinki.toLocaleString("sv-SE", { timeZone: "Europe/Stockholm" }),
19+
"2022-09-23 18:52:34",
20+
);
1821
});
1922

2023
Deno.test("Test DST transition", function () {

0 commit comments

Comments
 (0)