Skip to content
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.

Commit

Permalink
Fix an indentation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-andrews committed Jul 25, 2013
1 parent 0717a61 commit 6503f4a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/tests/module.module.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

buster.testCase('View#module()', {
setUp: function() {
setUp: function() {
var layout = new Layout({});
var apple = new Apple({ slot: 1 });
var orange = new Orange({ slot: 2 });
Expand All @@ -14,7 +13,7 @@ buster.testCase('View#module()', {
this.view = layout;
},

"Should return module type if no arguments given": function() {
"Should return module type if no arguments given": function() {
assert.equals(this.view.module(), 'layout');
},

Expand Down Expand Up @@ -43,4 +42,4 @@ buster.testCase('View#module()', {
assert.equals(henry.module(), 'henry');
assert.equals(henry.name, 'henry');
}
});
});

0 comments on commit 6503f4a

Please sign in to comment.