Skip to content

Commit f136ccd

Browse files
committed
Fix tests for 6c4a712
1 parent d26cc41 commit f136ccd

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Tests.Common/Constructed/MakeSwitch.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ public void SwitchOnExpressionWithDefaultSingleStatement() => RunTest(
130130
break;
131131
default:
132132
default(void);
133+
break;
133134
}", @"Select Case i
134135
Case 4
135136
Console.WriteLine(True)
@@ -182,6 +183,7 @@ public void SwitchOnExpressionWithDefaultMultiStatement() => RunTest(
182183
default:
183184
true;
184185
true;
186+
break;
185187
}", @"Select Case i
186188
Case 4
187189
Console.WriteLine(True)
@@ -242,6 +244,7 @@ public void SwitchOnMultipleStatementsWithDefault() => RunTest(
242244
default:
243245
true;
244246
true;
247+
break;
245248
}", @"Select Case Block
246249
i
247250
j

0 commit comments

Comments
 (0)