Skip to content

Commit 2fdfe80

Browse files
committed
Test: Remove superfluous semicolons
1 parent 29c4372 commit 2fdfe80

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests.sh

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#!/usr/bin/env bash
22

3-
SPACED=$(grep -REn '^ .+' --include '*.snippets' snippets);
3+
SPACED=$(grep -REn '^ .+' --include '*.snippets' snippets)
44

55
if [[ $? -ne 1 ]]; then
6-
echo These snippet lines are indented with spaces:;
7-
echo;
8-
echo "$SPACED";
9-
echo;
6+
echo These snippet lines are indented with spaces:
7+
echo
8+
echo "$SPACED"
9+
echo
1010
echo Tests failed!
11-
exit 1;
11+
exit 1
1212
fi
1313

1414
echo Tests passed!
15-
exit 0;
15+
exit 0

0 commit comments

Comments
 (0)