Skip to content

Commit

Permalink
Test - Fix DateTime test
Browse files Browse the repository at this point in the history
Cannot currently return 01/01/1970 as it's mapped to minval

Will be fixed in #4234
  • Loading branch information
amaitland committed Sep 7, 2022
1 parent 51240a0 commit dba6ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CefSharp.Test/Javascript/JavascriptCallbackFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public async Task CanEvaluateIntValues(object num)
}

[Theory]
[InlineData("1970-01-01", "1970-01-01")]
[InlineData("1970-01-02", "1970-01-02")]
[InlineData("1980-01-01", "1980-01-01")]
//https://github.com/cefsharp/CefSharp/issues/4234
public async Task CanEvaluateDateValues(DateTime expected, string actual)
Expand Down

0 comments on commit dba6ade

Please sign in to comment.