Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Copy-DbaAgentSchedule.Tests.ps1 with Integration Test #5487

Merged
merged 4 commits into from
May 9, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixed quotes
  • Loading branch information
gbargsley committed May 6, 2019
commit dc6a0505912de2c006c1e0f285deafc124ab857c
2 changes: 1 addition & 1 deletion tests/Copy-DbaAgentSchedule.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Describe "$commandname Integration Tests" -Tag "IntegrationTests" {
}

Context "Copies Agent Schedule" {
$results = Copy-DbaAgentSchedule -Source $script:instance2 -Destination $script:instance3 -Schedule dbatoolsci_DailySchedule
$results = Copy-DbaAgentSchedule -Source $script:instance2 -Destination $script:instance3 -Schedule 'dbatoolsci_DailySchedule'

It "returns one results" {
$results.Count -eq 1
Expand Down