diff --git a/tests/html/index.html b/tests/html/index.html
index 02dcc42c..b50d21de 100644
--- a/tests/html/index.html
+++ b/tests/html/index.html
@@ -2,11 +2,11 @@
KineticJS Test Suite
- atomated test counts updated on 06-02-2013
+ atomated test counts updated on 08-10-2013
- - Unit Tests (724)
- - Functional Tests (171)
- - Visual Tests (46)
+ - Unit Tests (793)
+ - Functional Tests (172)
+ - Visual Tests (53)
- Manual Tests
- Performance Tests
- Special Tests
diff --git a/tests/js/functionalTests.js b/tests/js/functionalTests.js
index 2164321f..5fd92adf 100644
--- a/tests/js/functionalTests.js
+++ b/tests/js/functionalTests.js
@@ -564,25 +564,16 @@ Test.Modules.EVENT = {
events.push('layer-draw');
});
- stage.on('draw', function(evt) {
- events.push('stage-draw');
- });
-
layer.on('beforeDraw', function(evt) {
events.push('layer-beforeDraw');
});
- stage.on('beforeDraw', function(evt) {
- events.push('stage-beforeDraw');
- });
-
-
layer.add(circle);
stage.add(layer);
console.log(events.toString())
- test(events.toString() === 'layer-beforeDraw,stage-beforeDraw,layer-draw,stage-draw', 'draw event order is incorrect');
+ test(events.toString() === 'layer-beforeDraw,layer-draw', 'draw event order is incorrect');
},