Skip to content

Commit

Permalink
Default timezone for tests is EST
Browse files Browse the repository at this point in the history
  • Loading branch information
lbuesching committed Jun 20, 2023
1 parent e919c32 commit 9237375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sage.Engine/Runtime/RuntimeContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public RuntimeContext(
SubscriberContext? subscriberContext = null)
{
_currentCulture = CompatibleGlobalizationSettings.GetCulture("en-US");
_currentTimezone = TimeZoneInfo.Local;
_currentTimezone = TimeZoneInfo.FindSystemTimeZoneById("Eastern Standard Time");
Random = new Random();
_rootCompilationOptions = rootCompileOptions;
_classicContentClient = provider.GetRequiredService<IClassicContentClient>();
Expand Down

0 comments on commit 9237375

Please sign in to comment.