From cd85f8ac3bb3136bb767f57163bf48ea0a502070 Mon Sep 17 00:00:00 2001 From: Freddy Kristiansen Date: Tue, 26 Mar 2024 13:56:27 +0100 Subject: [PATCH] tests failing due to fewer generic images (#3448) Co-authored-by: freddydk --- Tests/ContainerInfo.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/ContainerInfo.Tests.ps1 b/Tests/ContainerInfo.Tests.ps1 index 214ae1252..4c831e6f1 100644 --- a/Tests/ContainerInfo.Tests.ps1 +++ b/Tests/ContainerInfo.Tests.ps1 @@ -49,7 +49,7 @@ Describe 'ContainerInfo' { It 'Get-BcContainerImageTags' { $imageTags = get-bccontainerImageTags -imageName mcr.microsoft.com/businesscentral if ($imageTags) { - ($imageTags.Tags | Where-Object { $_.startsWith('10.0') }).Count | Should -BeGreaterThan 100 + ($imageTags.Tags | Where-Object { $_.startsWith('10.0') }).Count | Should -BeGreaterThan 10 } else { Set-ItResult -Inconclusive -Because 'Downloading generic image tags from mcr.microsoft.com/businesscentral failed'