Fix Windows external bearer refresh test

This commit is contained in:
Michael Bolin
2026-03-31 12:37:13 -07:00
parent 868ac158d7
commit 29ca9b1423

View File

@@ -364,7 +364,7 @@ mv tokens.next tokens.txt
let script_path = tempdir.path().join("print-token.ps1");
std::fs::write(
&script_path,
r#"$lines = Get-Content -Path tokens.txt
r#"$lines = @(Get-Content -Path tokens.txt)
if ($lines.Count -eq 0) { exit 1 }
Write-Output $lines[0]
$lines | Select-Object -Skip 1 | Set-Content -Path tokens.txt