We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a7c7f3 commit f4d3785Copy full SHA for f4d3785
dotnet/test/common/BiDi/Script/CallFunctionRemoteValueTest.cs
@@ -117,8 +117,8 @@ public async Task CanCallFunctionAndReturnNumberNegativeZero()
117
118
Assert.That(response.Result, Is.AssignableTo<RemoteValue.Number>());
119
120
- var expectedNegativeZero = ((RemoteValue.Number)response.Result).Value;
121
- Assert.That(IsNegativeZero(expectedNegativeZero));
+ var actualNumberValue = ((RemoteValue.Number)response.Result).Value;
+ Assert.That(IsNegativeZero(actualNumberValue));
122
123
static bool IsNegativeZero(double d)
124
{
0 commit comments