Fix typo in `AndroidServerLauncherImpl` class when on device was found (#33973)

This commit is contained in:
Jozef Izso 2024-12-12 20:12:58 +01:00 committed by GitHub
parent aca00a4ab0
commit a4add6ebaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ export class AndroidServerLauncherImpl {
if (options.deviceSerialNumber) {
devices = devices.filter(d => d.serial === options.deviceSerialNumber);
if (devices.length === 0)
throw new Error(`No device with serial number '${options.deviceSerialNumber}' not found`);
throw new Error(`No device with serial number '${options.deviceSerialNumber}' was found`);
}
if (devices.length > 1)