Skip to content

Commit

Permalink
* Fixed time server that returns correct time
Browse files Browse the repository at this point in the history
  • Loading branch information
Iskander Yarmukhametov committed Apr 17, 2024
1 parent 517a9d3 commit 59d8cf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/TestAuthority.Application/TimeServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ namespace TestAuthority.Application;
public class TimeServer: ITimeServer
{
/// <inheritdoc />
public DateTimeOffset Now { get; } = DateTimeOffset.Now;
public DateTimeOffset Now => DateTimeOffset.Now;
}

0 comments on commit 59d8cf0

Please sign in to comment.