Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Corrected error message in test file to recommend 'noop' task instead of 'build'
task for resolving dependencies
([issue #2279](https://github.com/dsccommunity/SqlServerDsc/issues/2279)).
- Updated integration test documentation in `tests/Integration/Commands/README.md`
to correctly reflect that `ConvertFrom-SqlDscDatabasePermission` test does not
require database instance connectivity
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/DSC_SqlAGDatabase.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function Invoke-TestSetup
}
catch [System.IO.FileNotFoundException]
{
throw 'DscResource.Test module dependency not found. Please run ".\build.ps1 -Tasks build" first.'
throw 'DscResource.Test module dependency not found. Please run ".\build.ps1 -Tasks noop" first.'
}

$script:testEnvironment = Initialize-TestEnvironment `
Expand Down