Skip to content

Commit ed75265

Browse files
remove xcuitest driver mentions
1 parent f56a624 commit ed75265

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/services.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ async function getTunnelRegistryClient(): Promise<TunnelApiClient> {
357357
String(tunnelRegistryPort).trim() === ''
358358
) {
359359
throw new Error(
360-
'Tunnel registry port not found. Please run the tunnel creation script first: sudo appium driver run xcuitest tunnel-creation',
360+
'Tunnel registry port not found. Please run the tunnel creation script first',
361361
);
362362
}
363363
return new TunnelApiClient(
@@ -370,7 +370,7 @@ async function getTunnelInformation(udid: string) {
370370
const tunnelExists = await tunnelApiClient.hasTunnel(udid);
371371
if (!tunnelExists) {
372372
throw new Error(
373-
`No tunnel found for device ${udid}. Please run the tunnel creation script first: sudo appium driver run xcuitest tunnel-creation`,
373+
`No tunnel found for device ${udid}. Please run the tunnel creation script first`,
374374
);
375375
}
376376
const tunnelConnection = await tunnelApiClient.getTunnelConnection(udid);

0 commit comments

Comments
 (0)