[interp] disable assemblyresolve_event6.exe
[mono.git] / mono / tests / appdomain-async-invoke.cs
index 0ec52b83b598d5f89749cffa32e7715674fa7351..3e7894c06c78af34a529a63556042bddb8cd4da1 100644 (file)
@@ -11,11 +11,11 @@ public class Test : MarshalByRefObject {
     }
 
     ~Test () {
-           Console.WriteLine ("in test desctructor");
+           Console.WriteLine ("in test destructor");
            GetIntDelegate del = new GetIntDelegate (getInt);
            AsyncCallback ac = new AsyncCallback (async_callback);
            if (del.BeginInvoke (ac, "bla") == null) {
-                   Console.WriteLine ("async recult is null");
+                   Console.WriteLine ("async result is null");
                    Environment.Exit (1);
            }
     }