Skip to content

Commit b87e601

Browse files
committed
Fixing indentation in spec/partials.js
1 parent a0e2e20 commit b87e601

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spec/partials.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ describe('partials', function() {
4141

4242
it("rendering undefined partial throws an exception", function() {
4343
shouldThrow(function() {
44-
var template = CompilerContext.compile("{{> whatever}}");
45-
template();
44+
var template = CompilerContext.compile("{{> whatever}}");
45+
template();
4646
}, Handlebars.Exception, 'The partial whatever could not be found');
4747
});
4848

@@ -71,10 +71,10 @@ describe('partials', function() {
7171
});
7272

7373
it("GH-14: a partial preceding a selector", function() {
74-
var string = "Dudes: {{>dude}} {{another_dude}}";
75-
var dude = "{{name}}";
76-
var hash = {name:"Jeepers", another_dude:"Creepers"};
77-
shouldCompileToWithPartials(string, [hash, {}, {dude:dude}], true, "Dudes: Jeepers Creepers", "Regular selectors can follow a partial");
74+
var string = "Dudes: {{>dude}} {{another_dude}}";
75+
var dude = "{{name}}";
76+
var hash = {name:"Jeepers", another_dude:"Creepers"};
77+
shouldCompileToWithPartials(string, [hash, {}, {dude:dude}], true, "Dudes: Jeepers Creepers", "Regular selectors can follow a partial");
7878
});
7979

8080
it("Partials with slash paths", function() {

0 commit comments

Comments
 (0)