[MSBuildDeviceIntegration] Fix duplicated test parameter (#7809)

The following test case is duplicated in `MSBuildDeviceIntegration.XASdkDeployTests (...)`:

    new object[] {
    	/* isRelease */      true,
    	/* xamarinForms */   false,
    	/* targetFramework*/ "net8.0-android",
    },

This was likely a c/p error and the correct `targetFramework` is `net7.0-android`.
This commit is contained in:
Jonathan Pobst 2023-02-21 08:41:26 -06:00 коммит произвёл GitHub
Родитель 3a2e629349
Коммит fc34ead13c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -43,7 +43,7 @@ namespace Xamarin.Android.Build.Tests
new object[] {
/* isRelease */ true,
/* xamarinForms */ false,
/* targetFramework*/ "net8.0-android",
/* targetFramework*/ "net7.0-android",
},
new object[] {
/* isRelease */ false,