Skip to content

Commit 3da3c62

Browse files
committed
Fix test: update SelectCase_WithRelationalPattern expected output to match actual converter output
1 parent ec7e85c commit 3da3c62

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tests/VB/StatementTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1301,10 +1301,10 @@ public void Classify(int n)
13011301
}", @"Friend Class TestClass
13021302
Public Sub Classify(n As Integer)
13031303
Select Case n
1304-
Case Is < 0
1305-
System.Console.Write(""negative"")
1306-
Case Is >= 0
1307-
System.Console.Write(""non-negative"")
1304+
Case < 0
1305+
Console.Write(""negative"")
1306+
Case >= 0
1307+
Console.Write(""non-negative"")
13081308
End Select
13091309
End Sub
13101310
End Class");

0 commit comments

Comments
 (0)