Merge pull request #4152 from BrzVlad/misc-gc-altstack
[mono.git] / mcs / class / System.Core / Test / System.Linq.Expressions / ExpressionTest_Power.cs
index a161b482a1a2e1a910c074175b88d17aa73bb25f..1e7ec15dd2c8c7ef8a5ecfb0919b7d5e1e9e40e4 100644 (file)
@@ -73,7 +73,7 @@ namespace MonoTests.System.Linq.Expressions
 
                        Assert.AreEqual (ExpressionType.Power, p.NodeType, "Power#01");
                        Assert.AreEqual (typeof (double), p.Type, "Add#02");
-                       Assert.AreEqual ("(1 ^ 2)", p.ToString ());
+                       Assert.AreEqual ("(1 ** 2)", p.ToString ());
                }
 
                [Test]
@@ -90,7 +90,6 @@ namespace MonoTests.System.Linq.Expressions
                }
 
                [Test]
-               [Category ("NotWorkingInterpreter")]
                public void NullablePower ()
                {
                        var a = Expression.Parameter (typeof (double?), "a");