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.
arg
1 parent efe6a57 commit 352ca99Copy full SHA for 352ca99
dotnet/test/common/BiDi/Script/LocalValueConversionTests.cs
@@ -88,11 +88,11 @@ static void AssertValue(LocalValue value)
88
[Test]
89
public void CanConvertZeroIntToLocalValue()
90
{
91
- LocalValue arg = 0;
+ int arg = 0;
92
93
AssertValue(arg);
94
95
- AssertValue(LocalValue.ConvertFrom(0));
+ AssertValue(LocalValue.ConvertFrom(arg));
96
97
static void AssertValue(LocalValue value)
98
@@ -123,7 +123,7 @@ public void CanConvertZeroDoubleToLocalValue()
123
124
125
126
127
128
129
0 commit comments