OpenLayers OpenLayers

Changeset 2853

Show
Ignore:
Timestamp:
03/22/07 14:16:09 (2 years ago)
Author:
sderle
Message:

Make Class mixin tests a little more robust.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/tests/BaseTypes/test_Class.html

    r2803 r2853  
    3232        A.prototype = { 
    3333            count: 0, 
     34            mixed: false, 
    3435            initialize: function () { 
    3536                initA++; 
     
    9697            t.ok( true, "IE sucks" ); 
    9798        } 
    98         t.eq( objC.mixed, true, "class C mixes has mixin properties" ); 
     99        t.eq( objC.mixed, true, "class C has mixin properties" ); 
    99100    } 
    100101