Commit 96e2707f 96e2707faede273537f7111ee1c02ec03c9cfe60 by Nicolas Perriault

fixed broken Tester.getCurrentSuiteId()

1 parent 0f674ce0
...@@ -993,7 +993,7 @@ Tester.prototype.findTestFiles = function findTestFiles(dir) { ...@@ -993,7 +993,7 @@ Tester.prototype.findTestFiles = function findTestFiles(dir) {
993 */ 993 */
994 Tester.prototype.getCurrentSuiteId = function getCurrentSuiteId() { 994 Tester.prototype.getCurrentSuiteId = function getCurrentSuiteId() {
995 "use strict"; 995 "use strict";
996 return casper.test.currentSuiteNum + "-" + casper.step; 996 return this.casper.test.currentSuiteNum + "-" + this.casper.step;
997 }; 997 };
998 998
999 /** 999 /**
......