diff --git a/CHANGELOG.md b/CHANGELOG.md index 33c766e07b..b09c10d09a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,6 @@ ### Features -- **checkver:** Add option to throw error as exception ([#4863](https://github.com/ScoopInstaller/Scoop/issues/4863)) - **install:** Allow downloading from private repositories ([#4254](https://github.com/ScoopInstaller/Scoop/issues/4243)) ### Bug Fixes @@ -25,7 +24,8 @@ ### Builds -- **schema:** Remove 'description' from required fields ([#4853](https://github.com/ScoopInstaller/Scoop/issues/4853)) +- **checkver:** Add option to throw error as exception ([#4863](https://github.com/ScoopInstaller/Scoop/issues/4863)) +- **schema:** Remove 'description' from required fields ([#4853](https://github.com/ScoopInstaller/Scoop/issues/4853), [#4874](https://github.com/ScoopInstaller/Scoop/issues/4874)) ### Documentation diff --git a/test/Import-Bucket-Tests.ps1 b/test/Import-Bucket-Tests.ps1 index ebc785f0cb..bdc249f800 100644 --- a/test/Import-Bucket-Tests.ps1 +++ b/test/Import-Bucket-Tests.ps1 @@ -64,7 +64,7 @@ Describe 'Manifest Validator' -Tag 'Validator' { $validator.Validate("$working_dir\invalid_wget.json") | Should -BeFalse $validator.Errors.Count | Should -Be 16 $validator.Errors | Select-Object -First 1 | Should -Match "Property 'randomproperty' has not been defined and the schema does not allow additional properties\." - $validator.Errors | Select-Object -Last 1 | Should -Match 'Required properties are missing from object: version, description\.' + $validator.Errors | Select-Object -Last 1 | Should -Match 'Required properties are missing from object: version\.' } } }