Add this for backwards compatibility
[mono.git] / mcs / class / System.Runtime.Remoting / Test / CallSeq.cs
index 32210d7c752108eeb056b945466b8c96e08fc64b..605b76087dc8fa7cdcc72f5960f5632f12de8052 100644 (file)
@@ -1,5 +1,5 @@
 //\r
-// MonoTests.System.Runtime.Remoting.CallSeq.cs\r
+// MonoTests.Remoting.CallSeq.cs\r
 //\r
 // Author: Lluis Sanchez Gual (lluis@ximian.com)\r
 //\r
@@ -11,7 +11,7 @@ using System.Threading;
 using System.Collections;\r
 using NUnit.Framework;\r
 \r
-namespace MonoTests.System.Runtime.Remoting\r
+namespace MonoTests.Remoting\r
 {\r
        public class CallSeq\r
        {\r
@@ -73,7 +73,7 @@ namespace MonoTests.System.Runtime.Remoting
 \r
                        if (checkPos >= calls.Count)\r
                        {\r
-                               if (!optional) Assertion.Fail ("[" + name + "] Call check failed. Expected call not made: \"" + msg + "\"");\r
+                               if (!optional) Assert.Fail ("[" + name + "] Call check failed. Expected call not made: \"" + msg + "\"");\r
                                else return;\r
                        }\r
 \r
@@ -82,7 +82,7 @@ namespace MonoTests.System.Runtime.Remoting
                        if (msg.Substring (3) != call.Substring (3))\r
                        {\r
                                if (optional) checkPos--;\r
-                               else Assertion.Fail ("[" + name + "] Call check failed in step " + (checkPos+1) + ". Expected \"" + msg + "\" found \"" + call + "\"");\r
+                               else Assert.Fail ("[" + name + "] Call check failed in step " + (checkPos+1) + ". Expected \"" + msg + "\" found \"" + call + "\"");\r
                        }\r
                }\r
 \r
@@ -98,4 +98,4 @@ namespace MonoTests.System.Runtime.Remoting
                        set { calls = value; }\r
                }\r
        }\r
-}\r
+}