Skip to content

Commit 85fb505

Browse files
committed
Powershell: fix function rename
1 parent ef1f069 commit 85fb505

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/BOSH.Sysprep/BOSH.Sysprep.Tests.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ Describe "BOSH.Sysprep" {
365365
}
366366
}
367367

368-
Describe "Create-Unattend-GCP" {
368+
Describe "Create-GCP-UnattendXML" {
369369
BeforeEach {
370370
$UnattendDestination = (New-TempDir)
371371
}
@@ -375,15 +375,15 @@ Describe "BOSH.Sysprep" {
375375

376376
It "places the generated Unattend file in the specified directory" {
377377
{
378-
Create-Unattend-GCP -UnattendDestination $UnattendDestination
378+
Create-GCP-UnattendXML -UnattendDestination $UnattendDestination
379379
} | Should -Not -Throw
380380

381381
Test-Path (Join-Path $UnattendDestination "unattended.xml") | Should -Be $True
382382
}
383383

384384
It "sets the timezone to UTC" {
385385
{
386-
Create-Unattend-GCP -UnattendDestination $UnattendDestination
386+
Create-GCP-UnattendXML -UnattendDestination $UnattendDestination
387387
} | Should -Not -Throw
388388

389389
$unattendPath = (Join-Path $UnattendDestination "unattended.xml")

0 commit comments

Comments
 (0)