File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
tests/Files.App.UnitTests/Tests Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -255,6 +255,7 @@ jobs:
255255 platform : [x64]
256256 env :
257257 CONFIGURATION : ${{ matrix.configuration }}
258+ PLATFORM : ${{ matrix.platform }}
258259
259260 steps :
260261
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public class WindowsStorageTests
99 [ TestMethod ]
1010 public void Test_WindowsStorageTests_GetShellNewItems ( )
1111 {
12- var folder = WindowsStorable . TryParse ( "C:\\ Windows" ) as WindowsFolder ;
12+ using var folder = WindowsStorable . TryParse ( "C:\\ Windows" ) as WindowsFolder ;
1313
1414 Assert . IsNotNull ( folder ) ;
1515
@@ -29,7 +29,7 @@ public void Test_WindowsStorageTests_GetShellNewItems()
2929 [ TestMethod ]
3030 public void Test_WindowsStorageTests_GetOpenWithMenuItems ( )
3131 {
32- var file = WindowsStorable . TryParse ( "C:\\ Windows\\ system.ini" ) as WindowsFile ;
32+ using var file = WindowsStorable . TryParse ( "C:\\ Windows\\ system.ini" ) as WindowsFile ;
3333
3434 Assert . IsNotNull ( file ) ;
3535
You can’t perform that action at this time.
0 commit comments