8.0 is now available in the feed, so update test to expect 8.0

This commit is contained in:
Noah Gilson 2024-02-05 10:27:45 -08:00
Родитель e82554f249
Коммит b654998f1a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -131,7 +131,7 @@ Microsoft.NETCore.App 7.0.5 [/usr/lib/dotnet/shared/Microsoft.NETCore.App]`;
{
const recVersion = await provider.getRecommendedDotnetVersion(installType);
assert.equal(mockExecutor.attemptedCommand, 'dotnet --version', 'Correct command run to get recommended version, uses newest package in distro json');
assert.equal(recVersion, '7.0.1xx', 'The most in support version is suggested : will eventually break if not updated');
assert.equal(recVersion, '8.0.1xx', 'The most in support version is suggested : will eventually break if not updated');
}
}).timeout(standardTimeoutTime);