Skip to content

Commit 81d6e53

Browse files
committed
chore: rename xUnit to xunit
1 parent 9ef269d commit 81d6e53

File tree

7 files changed

+3
-1
lines changed

7 files changed

+3
-1
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
using System;
2626
using System.Collections.Generic;
2727
using System.Globalization;
28+
using System.Text.Json;
29+
using System.Text.Json.Serialization;
2830
using System.Threading.Tasks;
2931
using Microsoft.Playwright.TestAdapter;
3032

@@ -65,7 +67,7 @@ private static async Task<IBrowser> CreateBrowser(IBrowserType browserType)
6567
ExposeNetwork = exposeNetwork,
6668
Headers = new Dictionary<string, string>
6769
{
68-
["Authorization"] = $"Bearer {accessToken}"
70+
["Authorization"] = $"Bearer {accessToken}",
6971
["x-playwright-launch-options"] = JsonSerializer.Serialize(PlaywrightSettingsProvider.LaunchOptions, new JsonSerializerOptions() { DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull })
7072
}
7173
};
File renamed without changes.

0 commit comments

Comments
 (0)