From e99b87ecc6b412e44f40933b39fb29433f6e902d Mon Sep 17 00:00:00 2001 From: Paulo Santos Date: Fri, 16 Jan 2026 12:42:03 +0000 Subject: [PATCH] fix: update SSDT extension --- images/windows/scripts/tests/SSDTExtensions.Tests.ps1 | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/images/windows/scripts/tests/SSDTExtensions.Tests.ps1 b/images/windows/scripts/tests/SSDTExtensions.Tests.ps1 index 1c5749577..060cf517f 100644 --- a/images/windows/scripts/tests/SSDTExtensions.Tests.ps1 +++ b/images/windows/scripts/tests/SSDTExtensions.Tests.ps1 @@ -1,13 +1,7 @@ Describe "SSDTExtensions" { #These extensions don't have any proper name in the state.packages.json file, only id is available, which can be found on extension marketplace download page - - $testExtenions = @( - @{id = "04a86fc2-dbd5-4222-848e-911638e487fe"} - @{id = "717ad572-c4b7-435c-c166-c2969777f718"} - ) - - It "Extensions id=" -TestCases $testExtenions { - $version = Get-VSExtensionVersion -packageName "${id}" + It "Extension SSDT" { + $version = Get-VSExtensionVersion -packageName "SSDT" $version | Should -Not -BeNullOrEmpty } }