Skip to content

Commit b1c3f66

Browse files
committed
fix: merge conflicts
2 parents 1d354ee + fc69598 commit b1c3f66

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/ElectronNET.API/API/Entities/Cookie.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ public class Cookie
5050
/// </summary>
5151
public long ExpirationDate { get; set; }
5252
}
53-
}
53+
}

src/ElectronNET.IntegrationTests/Tests/BrowserWindowTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public async Task Can_set_and_get_position()
4848
this.fx.MainWindow.SetPosition(134, 246);
4949
await Task.Delay(500);
5050
var pos = await this.fx.MainWindow.GetPositionAsync();
51-
pos.Should().BeEquivalentTo([134, 246]);
51+
pos.Should().BeEquivalentTo(new[] { 134, 246 });
5252
}
5353

5454
[Fact]

src/ElectronNET.IntegrationTests/Tests/IpcMainTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public async Task Ipc_RemoveAllListeners_stops_receiving()
4545
[Fact]
4646
public async Task Ipc_OnSync_returns_value()
4747
{
48-
Electron.IpcMain.OnSync("ipc-sync-test", (obj) =>
48+
Electron.IpcMain.OnSync("ipc-sync-test", obj =>
4949
{
5050
obj.Should().NotBeNull();
5151
return "pong";

0 commit comments

Comments
 (0)