Skip to content

Commit 20ce595

Browse files
committed
Fix grammar in comments for clarity in BeforeDiscovery block
1 parent 7e14a61 commit 20ce595

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Unit/Public/New-SqlDscLogin.Tests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ BeforeDiscovery {
77
{
88
if (-not (Get-Module -Name 'DscResource.Test'))
99
{
10-
# Assumes dependencies has been resolved, so if this module is not available, run 'noop' task.
10+
# Assumes dependencies have been resolved, so if this module is not available, run 'noop' task.
1111
if (-not (Get-Module -Name 'DscResource.Test' -ListAvailable))
1212
{
1313
# Redirect all streams to $null, except the error stream (stream 2)
1414
& "$PSScriptRoot/../../../build.ps1" -Tasks 'noop' 3>&1 4>&1 5>&1 6>&1 > $null
1515
}
1616

17-
# If the dependencies has not been resolved, this will throw an error.
17+
# If the dependencies have not been resolved, this will throw an error.
1818
Import-Module -Name 'DscResource.Test' -Force -ErrorAction 'Stop'
1919
}
2020
}

0 commit comments

Comments
 (0)