diff --git a/ICSharpCode.Decompiler.Tests/ICSharpCode.Decompiler.Tests.csproj b/ICSharpCode.Decompiler.Tests/ICSharpCode.Decompiler.Tests.csproj
index 7cf6c5221..94b10baa7 100644
--- a/ICSharpCode.Decompiler.Tests/ICSharpCode.Decompiler.Tests.csproj
+++ b/ICSharpCode.Decompiler.Tests/ICSharpCode.Decompiler.Tests.csproj
@@ -29,7 +29,10 @@
False
False
False
- false
+
+ false
True
@@ -101,8 +104,6 @@
-
-
@@ -114,9 +115,7 @@
-
-
@@ -130,7 +129,6 @@
-
@@ -144,268 +142,23 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -427,4 +180,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ICSharpCode.Decompiler.Tests/TestCases/Pretty/Operators.cs b/ICSharpCode.Decompiler.Tests/TestCases/Pretty/Operators.cs
index d6a521bf3..96a033415 100644
--- a/ICSharpCode.Decompiler.Tests/TestCases/Pretty/Operators.cs
+++ b/ICSharpCode.Decompiler.Tests/TestCases/Pretty/Operators.cs
@@ -95,10 +95,10 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
}
#if CS110
- public static AllOperators operator >>>(AllOperators a, int b)
- {
- return null;
- }
+ public static AllOperators operator >>>(AllOperators a, int b)
+ {
+ return null;
+ }
#endif
public static AllOperators operator ~(AllOperators a)
@@ -236,7 +236,7 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
c = a << 5;
c = a >> 5;
#if CS110
- c = a >>> 5;
+ c = a >>> 5;
#endif
c = ~a;
c = !a;