diff options
Diffstat (limited to 'test/dotnet/install_additional_dotnet.sh')
-rw-r--r-- | test/dotnet/install_additional_dotnet.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/dotnet/install_additional_dotnet.sh b/test/dotnet/install_additional_dotnet.sh index 3f0539e..f45c1e1 100644 --- a/test/dotnet/install_additional_dotnet.sh +++ b/test/dotnet/install_additional_dotnet.sh @@ -7,9 +7,10 @@ source dev-container-features-test-lib ./test.sh check "version 6.0.405 installed" bash -c 'dotnet --list-sdks | grep 6.0.405' +check "version 6.0.402 installed" bash -c 'dotnet --list-sdks | grep 6.0.402' check "version 3.1.416 installed" bash -c 'dotnet --list-sdks | grep 3.1.416' # Primary version plus 2 additional versions -check "latest version installed" bash -c 'test "$(dotnet --list-sdks | wc -l)" -eq 3' +check "latest version installed" bash -c 'test "$(dotnet --list-sdks | wc -l)" -eq 4' reportResults |