Skip to content

Commit 50f28b5

Browse files
Remove obsolete assertion
1 parent bd5aedc commit 50f28b5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

dotnet/test/common/BiDi/Script/CallFunctionParameterTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,6 @@ public async Task CanCallFunctionAndRoundtrip_Five(LocalValue local, RemoteValue
256256
else if (response.Result is RemoteValue.Date actualDate && expected is RemoteValue.Date expectedDate)
257257
{
258258
var actualDateParsed = DateTime.SpecifyKind(DateTime.Parse(actualDate.Value, CultureInfo.InvariantCulture), DateTimeKind.Utc);
259-
Assert.That(actualDateParsed.Kind, Is.EqualTo(DateTimeKind.Utc));
260259
Assert.That(actualDateParsed, Is.EqualTo(DateTime.Parse(expectedDate.Value)).Within(TimeSpan.FromMilliseconds(1)));
261260
}
262261
else

0 commit comments

Comments
 (0)