diff --git a/src/DotNet.Meteor.Tests/Utils/DeviceService.cs b/src/DotNet.Meteor.Tests/Utils/DeviceService.cs index 7a24e72..2915aec 100644 --- a/src/DotNet.Meteor.Tests/Utils/DeviceService.cs +++ b/src/DotNet.Meteor.Tests/Utils/DeviceService.cs @@ -11,8 +11,8 @@ public static class DeviceService { public const string Windows10 = "windows10.0.19041.0"; private readonly static Dictionary _devices = new Dictionary() { - { 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 } },