We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 066cd87 commit a25ae77Copy full SHA for a25ae77
2 files changed
src/tests/Find-MarkdownImages.Tests.ps1
@@ -298,7 +298,7 @@ Describe "Find-MarkdownImages" {
298
It "Should use attachments directory user preference if available" {
299
# arrange
300
InModuleScope PSBlogger {
301
- $BloggerSession.AttachmentsDirectory = Get-TestFilePath "attachments"
+ $BloggerSession.AttachmentsDirectory = Join-Path "TestDrive:" "attachments"
302
}
303
304
# use a markdown file that is a sibling to attachments directory to ensure
src/tests/Get-BloggerPost.Tests.ps1
@@ -194,7 +194,7 @@ Describe "Get-BloggerPost" {
194
195
$postId = "123"
196
$title = "Test Post"
197
- $outFile = Get-TestFile "$title.md"
+ $outFile = Get-TestFilePath "$title.md"
198
199
200
AfterEach {
0 commit comments