Skip to content

Commit

Permalink
Fixes #5800
Browse files Browse the repository at this point in the history
Fixes #5800
  • Loading branch information
Jarred-Sumner committed Sep 20, 2023
1 parent 5d09a06 commit 1456c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/js/node/process/process.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ it("process.env.TZ", () => {
var origTimezone = Intl.DateTimeFormat().resolvedOptions().timeZone;

// the default timezone is Etc/UTC
if (!"TZ" in process.env) {
if (!("TZ" in process.env)) {
expect(origTimezone).toBe("Etc/UTC");
}

Expand Down

0 comments on commit 1456c72

Please sign in to comment.