You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2006/08/11 19:29:14 UTC

svn commit: r430868 - /incubator/xap/trunk/testsrc/xap/util/_TestHttpUtils.js

Author: mturyn
Date: Fri Aug 11 12:29:13 2006
New Revision: 430868

URL: http://svn.apache.org/viewvc?rev=430868&view=rev
Log:
(For P.Yee)
Corrected a couple of tests that were looking for a null object when they should have been checking for an undefined parameter.

Modified:
    incubator/xap/trunk/testsrc/xap/util/_TestHttpUtils.js

Modified: incubator/xap/trunk/testsrc/xap/util/_TestHttpUtils.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/testsrc/xap/util/_TestHttpUtils.js?rev=430868&r1=430867&r2=430868&view=diff
==============================================================================
--- incubator/xap/trunk/testsrc/xap/util/_TestHttpUtils.js (original)
+++ incubator/xap/trunk/testsrc/xap/util/_TestHttpUtils.js Fri Aug 11 12:29:13 2006
@@ -34,7 +34,7 @@
 		},
 		send : function (postData) {
 			this.send.called = true;
-			assertNull(postData);
+			assertUndefined(postData);
 		},
 		responseText : content
 	};
@@ -64,7 +64,7 @@
 		},
 		send : function (postData) {
 			this.send.called = true;
-			assertNull(postData);
+			assertUndefined(postData);
 		},
 		responseText : content
 	};