Skip to content

Commit f6b06ee

Browse files
authored
Fix to use 'noop' task (#2300)
1 parent 03e9f51 commit f6b06ee

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5151

5252
### Fixed
5353

54+
- Corrected error message in test file to recommend 'noop' task instead of 'build'
55+
task for resolving dependencies
56+
([issue #2279](https://github.com/dsccommunity/SqlServerDsc/issues/2279)).
5457
- Updated integration test documentation in `tests/Integration/Commands/README.md`
5558
to correctly reflect that `ConvertFrom-SqlDscDatabasePermission` test does not
5659
require database instance connectivity

tests/Unit/DSC_SqlAGDatabase.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function Invoke-TestSetup
1919
}
2020
catch [System.IO.FileNotFoundException]
2121
{
22-
throw 'DscResource.Test module dependency not found. Please run ".\build.ps1 -Tasks build" first.'
22+
throw 'DscResource.Test module dependency not found. Please run ".\build.ps1 -Tasks noop" first.'
2323
}
2424

2525
$script:testEnvironment = Initialize-TestEnvironment `

0 commit comments

Comments
 (0)