Skip to content
Merged
3 changes: 1 addition & 2 deletions dotnet/src/webdriver/SeleniumManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ internal sealed record SeleniumManagerResponse(IReadOnlyList<LogEntryResponse> L
{
public sealed record LogEntryResponse(string Level, string Message);

internal sealed record ResultResponse
public sealed record ResultResponse
(
[property: JsonPropertyName(SeleniumManager.DriverPathKey)]
string DriverPath,
Expand All @@ -224,7 +224,6 @@ string BrowserPath
);
}


[JsonSerializable(typeof(SeleniumManagerResponse))]
[JsonSourceGenerationOptions(PropertyNameCaseInsensitive = true)]
internal sealed partial class SeleniumManagerSerializerContext : JsonSerializerContext;
Expand Down
Loading