Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
JaneySprings committed Nov 7, 2024
1 parent 2261d50 commit b1fda97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DotNet.Meteor.Tests/Utils/DeviceService.cs
Original file line number Diff line number Diff line change
@@ -11,8 +11,8 @@ public static class DeviceService {
public const string Windows10 = "windows10.0.19041.0";

private readonly static Dictionary<string, DeviceData> _devices = new Dictionary<string, DeviceData>() {
{ MacArm64, new DeviceData { Platform = Platforms.Mac, RuntimeId = Runtimes.MacArm64 } },
{ MacX64, new DeviceData { Platform = Platforms.Mac, RuntimeId = Runtimes.MacX64 } },
{ MacArm64, new DeviceData { Platform = Platforms.MacCatalyst, RuntimeId = Runtimes.MacArm64 } },
{ MacX64, new DeviceData { Platform = Platforms.MacCatalyst, RuntimeId = Runtimes.MacX64 } },
{ AppleSimulatorX64, new DeviceData { Platform = Platforms.iOS, RuntimeId = Runtimes.iOSSimulatorX64 } },
{ AppleArm64, new DeviceData { Platform = Platforms.iOS, RuntimeId = Runtimes.iOSArm64 } },
{ Windows10, new DeviceData { Platform = Platforms.Windows, RuntimeId = Windows10 } },

0 comments on commit b1fda97

Please sign in to comment.