[tests] Correctly run the VerifyRemoteConnection target. (#20616)

There's no target named `SayHello`, the correct name is `_SayHello` (where we
establish a connection to the remote mac).
This commit is contained in:
Rolf Bjarne Kvinge 2024-05-21 11:04:22 +02:00 коммит произвёл GitHub
Родитель 5a5df07276
Коммит a76d4946e0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -128,7 +128,7 @@
</Zip> </Zip>
</Target> </Target>
<Target Name="VerifyRemoteConnection" AfterTargets="SayHello" Condition="'$(EnsureRemoteConnection)' == 'true'"> <Target Name="VerifyRemoteConnection" AfterTargets="_SayHello" Condition="'$(EnsureRemoteConnection)' == 'true'">
<Error Condition="'$(IsMacEnabled)' != 'true'" Text="Unable to connect to the remote Mac. Please examine the output of the SayHello target to figure out what happened." /> <Error Condition="'$(IsMacEnabled)' != 'true'" Text="Unable to connect to the remote Mac. Please examine the output of the SayHello target to figure out what happened." />
</Target> </Target>
</Project> </Project>