Skip to content

Commit 9d33e29

Browse files
committedApr 8, 2024
fix: Have Smoke Tests call the correct function
1 parent 9ceb6dd commit 9d33e29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/ScriptModuleRepositoryTemplate/TemplateRepoFiles/deploy/Invoke-SmokeTests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ BeforeAll {
1616
Describe 'Get-HelloWorld' {
1717
It 'Should return "Hello, World!"' {
1818
$expected = 'Hello, World!'
19-
$result = Get-TemplateDescription
19+
$result = Get-HelloWorld
2020
$result | Should -Be $expected
2121
}
2222
}

0 commit comments

Comments
 (0)
Please sign in to comment.