This commit is contained in:
Davis W. Frank
2011-06-08 08:36:03 -07:00
parent 3f4adf7715
commit 4c6dafa3f5

View File

@@ -31,7 +31,9 @@ describe("TrivialReporter", function() {
function findElement(divs, withClass) {
var els = findElements(divs, withClass);
if (els.length > 0) return els[0];
if (els.length > 0) {
return els[0];
}
throw new Error("couldn't find div with class " + withClass);
}
@@ -96,7 +98,6 @@ describe("TrivialReporter", function() {
});
});
describe("failure messages (integration)", function () {
var spec, results, expectationResult;