From d07659e7ad2cabca4773625fd511b4cbd32c3b4f Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Tue, 3 Jun 2025 18:24:40 +0000 Subject: [PATCH] When choosing a default simulator device, don't use `simctl --set testing` --- iOS/testbed/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/testbed/__main__.py b/iOS/testbed/__main__.py index c05497ede3aa61..1146bf3b988cda 100644 --- a/iOS/testbed/__main__.py +++ b/iOS/testbed/__main__.py @@ -127,7 +127,7 @@ async def async_check_output(*args, **kwargs): async def select_simulator_device(): # List the testing simulators, in JSON format raw_json = await async_check_output( - "xcrun", "simctl", "--set", "testing", "list", "-j" + "xcrun", "simctl", "list", "-j" ) json_data = json.loads(raw_json)