Skip to content

Commit e67116f

Browse files
committed
test: fix syntax error
1 parent 5ac8942 commit e67116f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sample/Tests/test/test_windows_helpers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -740,12 +740,12 @@ def setup_protocol_association():
740740
741741
# Find the Unity sample app executable
742742
$sampleAppPath = "C:\\Immutable\\unity-immutable-sdk\\sample\\build\\{product_name}.exe"
743-
if (Test-Path $sampleAppPath) {
743+
if (Test-Path $sampleAppPath) {{
744744
Set-ItemProperty -Path $commandKey -Name "(Default)" -Value "`"$sampleAppPath`" `"%1`""
745745
Write-Host "Protocol association set up successfully"
746-
} else {
746+
}} else {{
747747
Write-Host "Sample app not found at expected path"
748-
}
748+
}}
749749
'''
750750

751751
try:

0 commit comments

Comments
 (0)