Skip to content

Commit 31ec16d

Browse files
authored
Remove redundant semicolon (#49996)
1 parent e4f056b commit 31ec16d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Http.Abstractions/test/ProblemDetailsJsonConverterTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void Read_ThrowsIfJsonIsIncomplete()
2323
var ex = Record.Exception(() =>
2424
{
2525
var reader = new Utf8JsonReader(Encoding.UTF8.GetBytes(json));
26-
JsonSerializer.Deserialize(ref reader, typeof(ProblemDetails), JsonSerializerOptions);;
26+
JsonSerializer.Deserialize(ref reader, typeof(ProblemDetails), JsonSerializerOptions);
2727
});
2828
Assert.IsAssignableFrom<JsonException>(ex);
2929
}

0 commit comments

Comments
 (0)