Author: ptw
Date: 2007-10-24 09:59:09 -0700 (Wed, 24 Oct 2007)
New Revision: 6988

Modified:
   openlaszlo/trunk/test/lztest/lztest-class-impl.lzx
Log:
Change 20071024-ptw-z by [EMAIL PROTECTED] on 2007-10-24 12:53:50 EDT
    in /Users/ptw/OpenLaszlo/ringding-2
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: Fix class-impl test

Bugs Fixed:
LPP-4942 'lztest-class-impl.lzx fails'

Technical Reviewer: hminsky (pending)
QA Reviewer: mamye (pending)

Details:
    Change <x>.make to new <x>.

Tests:
    Test passes now.



Modified: openlaszlo/trunk/test/lztest/lztest-class-impl.lzx
===================================================================
--- openlaszlo/trunk/test/lztest/lztest-class-impl.lzx  2007-10-24 15:55:48 UTC 
(rev 6987)
+++ openlaszlo/trunk/test/lztest/lztest-class-impl.lzx  2007-10-24 16:59:09 UTC 
(rev 6988)
@@ -83,7 +83,7 @@
 
     LzTestManager.assertEquals("LzSubSub", LzSubSub.classname);
     
-    var sub2Inst = LzSubSub.make();
+    var sub2Inst = new LzSubSub();
 
     LzTestManager.assertTrue( sub2Inst instanceof LzSub);
     LzTestManager.assertTrue( sub2Inst instanceof LzSubSub);
@@ -104,7 +104,7 @@
     var LzNodeSub = Class.make( "LzNodeSub", LzNode );
     LzTestManager.assertEquals("LzNodeSub", LzNodeSub.classname);
 
-    var nodeSubInst = LzNodeSub.make();
+    var nodeSubInst = new LzNodeSub();
     LzTestManager.assertTrue( nodeSubInst instanceof LzNodeSub );
 
 }


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to