From 1cd802c5f4043f2a3d8bc0e5d57fefda8131c9a1 Mon Sep 17 00:00:00 2001 From: Schuyler Erle Date: Thu, 22 Mar 2007 18:16:09 +0000 Subject: [PATCH] Make Class mixin tests a little more robust. git-svn-id: http://svn.openlayers.org/trunk/openlayers@2853 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tests/BaseTypes/test_Class.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/BaseTypes/test_Class.html b/tests/BaseTypes/test_Class.html index af8c24d7cd..dd3f366a5f 100644 --- a/tests/BaseTypes/test_Class.html +++ b/tests/BaseTypes/test_Class.html @@ -31,6 +31,7 @@ var initA = 0; A.prototype = { count: 0, + mixed: false, initialize: function () { initA++; this.count++; @@ -95,7 +96,7 @@ t.ok( true, "IE sucks" ); t.ok( true, "IE sucks" ); } - t.eq( objC.mixed, true, "class C mixes has mixin properties" ); + t.eq( objC.mixed, true, "class C has mixin properties" ); } // -->