diff options
author | JP Ungaretti <git@jungaretti.com> | 2023-03-02 01:13:40 +0300 |
---|---|---|
committer | JP Ungaretti <git@jungaretti.com> | 2023-03-02 01:13:40 +0300 |
commit | b00c0796028f82a4db0b43988cf57e33c5a95691 (patch) | |
tree | b2085d07fc899ee7a0b620a1ddbfc76eae35c99c | |
parent | de13e76cb71ffbca7ab99213f86f60790d0cc383 (diff) |
Update additional versions scenario
-rw-r--r-- | test/dotnet/install_additional_dotnet.sh | 3 | ||||
-rw-r--r-- | test/dotnet/scenarios.json | 2 |
2 files changed, 3 insertions, 2 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 diff --git a/test/dotnet/scenarios.json b/test/dotnet/scenarios.json index 45a268f..3e930df 100644 --- a/test/dotnet/scenarios.json +++ b/test/dotnet/scenarios.json @@ -4,7 +4,7 @@ "features": { "dotnet": { "version": "latest", - "additionalVersions": "6.0.405, 3.1.416" + "additionalVersions": "6.0.405, 6.0.402,3.1.416" } } }, |