semicolon fixes subsequent to jshint run
This commit is contained in:
parent
2731716ccb
commit
f5afe18a6b
|
@ -29,11 +29,11 @@ jasmine.TrivialConsoleReporter = function(print) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function indent(str, spaces) { var lines = str.split("\n");
|
function indent(str, spaces) { var lines = str.split("\n");
|
||||||
var newArr = []
|
var newArr = [];
|
||||||
for(var i=0; i<lines.length; i++) {
|
for(var i=0; i<lines.length; i++) {
|
||||||
newArr.push(repeat(" ", spaces).join("") + lines[i])
|
newArr.push(repeat(" ", spaces).join("") + lines[i]);
|
||||||
}
|
}
|
||||||
return newArr.join("\n")
|
return newArr.join("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
function specFailureDetails(suiteDescription, specDescription, stackTraces) {
|
function specFailureDetails(suiteDescription, specDescription, stackTraces) {
|
||||||
|
|
Loading…
Reference in New Issue