Skip to content

Commit 4df358d

Browse files
committed
Changing tabs to spaces
1 parent 7db3e1b commit 4df358d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/CLU/Microsoft.ScenarioTests.CLU/testrunner.bat

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,29 @@ ECHO Test return code success case
44
call testclu success show 2> out.error
55
REM We expect that the commands above succeed (return 0)
66
IF %ERRORLEVEL% NEQ 0 (
7-
ECHO "Expected error level 0 for success, got " %ERRORLEVEL%
8-
EXIT /B 1
7+
ECHO "Expected error level 0 for success, got " %ERRORLEVEL%
8+
EXIT /B 1
99
)
1010

1111
ECHO Test return codes non terminating error case
1212
call testclu success show --generatenonterminatingerror true 2> out.error
1313
IF %ERRORLEVEL% NEQ 1 (
14-
ECHO "Expected error level 1 for non-terminating error, got " %ERRORLEVEL%
15-
EXIT /B 1
14+
ECHO "Expected error level 1 for non-terminating error, got " %ERRORLEVEL%
15+
EXIT /B 1
1616
)
1717

1818
ECHO Test return codes terminating error case
1919
call testclu success show --generateterminatingerror true 2> out.error
2020
IF %ERRORLEVEL% NEQ 2 (
21-
ECHO "Expected error level 2 for terminating error, got " %ERRORLEVEL%
22-
EXIT /B 1
21+
ECHO "Expected error level 2 for terminating error, got " %ERRORLEVEL%
22+
EXIT /B 1
2323
)
2424

2525
ECHO Test pipeline aliasing
2626
call testclu record new | testclu record show > out.txt
2727
IF %ERRORLEVEL% NEQ 0 (
28-
ECHO "Expected error level 0 for success, got " %ERRORLEVEL%
29-
EXIT /B 1
28+
ECHO "Expected error level 0 for success, got " %ERRORLEVEL%
29+
EXIT /B 1
3030
)
3131

3232

0 commit comments

Comments
 (0)