Skip to content

Commit 1191586

Browse files
authored
Replease“” with string.Empty
1 parent 7cfa578 commit 1191586

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/unit/System.Windows.Forms/System/Windows/Forms/WebBrowserUriTypeConverterTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void WebBrowserUri_ConvertFrom_AbsoluteUri_ReturnsSame(string input)
3939
[Fact]
4040
public void WebBrowserUri_ConvertFrom_EmptyString_ReturnsNull()
4141
{
42-
object? result = _converter.ConvertFrom(null, CultureInfo.InvariantCulture, "");
42+
object? result = _converter.ConvertFrom(null, CultureInfo.InvariantCulture, string.Empty);
4343

4444
result.Should().BeNull();
4545
}

0 commit comments

Comments
 (0)