Skip to content

Commit ff0ba88

Browse files
committed
ui-tests: fix indentation of RunWaitOne()
It used only 3 spaces, when 4 were called for. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 6aed323 commit ff0ba88

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ui-tests/ui-test-library.ahk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ ExitWithError(error) {
5555
}
5656

5757
RunWaitOne(command) {
58-
shell := ComObject("WScript.Shell")
59-
; Execute a single command via cmd.exe
60-
exec := shell.Exec(A_ComSpec " /C " command)
61-
; Read and return the command's output
62-
return exec.StdOut.ReadAll()
58+
shell := ComObject("WScript.Shell")
59+
; Execute a single command via cmd.exe
60+
exec := shell.Exec(A_ComSpec " /C " command)
61+
; Read and return the command's output
62+
return exec.StdOut.ReadAll()
6363
}
6464

6565
; This function is quite the hack. It assumes that the Windows Terminal is the active window,

0 commit comments

Comments
 (0)