Bugfix: Clean up remaining reference to 3.1.419 (#1446)

* clean up remaining reference to 3.1.419, replacing with newest 3.1 sdk version

* Revert "clean up remaining reference to 3.1.419, replacing with newest 3.1 sdk version"

This reverts commit 2396a29c9c.

* Remove remaining reference to 3.1.419 and replace with a constant
This commit is contained in:
Paul Dorsch 2022-06-24 17:35:59 -04:00 коммит произвёл GitHub
Родитель da75264d8b
Коммит 1fd1845baa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -822,7 +822,9 @@ namespace Microsoft.Oryx.BuildImage.Tests
() =>
{
Assert.True(result.IsSuccess);
Assert.Contains(string.Format(SdkVersionMessageFormat, "3.1.419"), result.StdOut);
Assert.Contains(
string.Format(SdkVersionMessageFormat, DotNetCoreSdkVersions.DotNetCore31SdkVersion),
result.StdOut);
},
result.GetDebugInfo());
}