Skip to content

Commit

Permalink
fixing some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
fresheneesz committed Aug 27, 2013
1 parent 6a4015a commit f4eaca6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion basicFormatter.js
@@ -1,6 +1,6 @@

// built in test formatting helper
exports.formatBasic = function(unitTest, format) {
module.exports = function(unitTest, format) {
//group, assert, exception

return formatGroup(unitTest.results(), format, 0).result;
Expand Down
2 changes: 1 addition & 1 deletion indent.js
@@ -1,5 +1,5 @@

exports.indent = function(i, str) {
module.exports = function(i, str) {
return i+str.split("\n") // get all lines
.join("\n"+i) // join all lines with an indent
}
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -7,7 +7,7 @@
"stack-trace":""
},
"devDependencies": {
"asyncFuture":"git+https://git@github.com/fresheneesz/asyncFuture.git#de90a0b859006da5da0711ee774ff8e9cbe75a79"
"asyncFuture":"git+https://git@github.com/fresheneesz/asyncFuture.git#e26c29c76d840b6dfe2f00b64f16d4a8d67a5508"
},
"author": "Billy Tetrud <bitetrudpublic@gmail.com> (https://github.com/fresheneesz/)",
"license": {
Expand Down

0 comments on commit f4eaca6

Please sign in to comment.