File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
ElectronNET.API/API/Entities
ElectronNET.IntegrationTests/Tests Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,4 +50,4 @@ public class Cookie
5050 /// </summary>
5151 public long ExpirationDate { get ; set ; }
5252 }
53- }
53+ }
Original file line number Diff line number Diff 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 ]
Original file line number Diff line number Diff 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" ;
You can’t perform that action at this time.
0 commit comments