Skip to content

Commit

Permalink
Remove trailing whitespace in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenthuberdeau committed Feb 19, 2025
1 parent 5794365 commit 263d423
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/_exe/switch.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ void state_machine_switch() {

void bodiless_switch() {
switch (123)
case 123:
case 123:
putchar('E');

switch (456)
switch (456)
case 123:
case 456:
putchar('E');
Expand Down
6 changes: 3 additions & 3 deletions tests/_sh/switch.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ void switch_in_while(){
}

void bodiless_switch() {
switch (123)
case 123:
switch (123)
case 123:
putchar('F');

switch (456)
switch (456)
case 123:
case 456:
putchar('E');
Expand Down

0 comments on commit 263d423

Please sign in to comment.