Skip to content

Commit ec3279b

Browse files
committed
Updated
1 parent cf8be75 commit ec3279b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@ jobs:
255255
platform: [x64]
256256
env:
257257
CONFIGURATION: ${{ matrix.configuration }}
258+
PLATFORM: ${{ matrix.platform }}
258259

259260
steps:
260261

tests/Files.App.UnitTests/Tests/WindowsStorageTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)