From 3af3c4c3edda805f2691f600c3e7a87c3795e642 Mon Sep 17 00:00:00 2001 From: Gregor Pacnik Date: Tue, 9 Jul 2013 08:33:37 +1000 Subject: [PATCH] Fix CSharpOutputTests due to recent LINQ where changes --- .../NRefactory/Test/Output/CSharp/CSharpOutputTest.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Libraries/NRefactory/Test/Output/CSharp/CSharpOutputTest.cs b/src/Libraries/NRefactory/Test/Output/CSharp/CSharpOutputTest.cs index 894aa86cc33..d6a3bb73a2c 100644 --- a/src/Libraries/NRefactory/Test/Output/CSharp/CSharpOutputTest.cs +++ b/src/Libraries/NRefactory/Test/Output/CSharp/CSharpOutputTest.cs @@ -724,7 +724,7 @@ public void ImplicitlyTypedArrayCreation() public void QuerySimpleWhere() { TestExpression("from n in numbers\n" + - " where n < 5\n" + + " where n < 5\n" + " select n"); } @@ -732,9 +732,9 @@ public void QuerySimpleWhere() public void QueryMultipleFrom() { TestExpression("from c in customers\n" + - " where c.Region == \"WA\"\n" + + " where c.Region == \"WA\"\n" + " from o in c.Orders\n" + - " where o.OrderDate >= cutoffDate\n" + + " where o.OrderDate >= cutoffDate\n" + " select new {\n" + " c.CustomerID,\n" + " o.OrderID\n" +