mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Fixed typo tempalte -> template (#11722)
no issue - Fixes al typo in test/regression/site/site_spec.js. Should read `template` rather than `tempalte`.
This commit is contained in:
parent
1daaf075aa
commit
270af89ee2
1 changed files with 3 additions and 3 deletions
|
@ -1424,7 +1424,7 @@ describe('Integration - Web - Site', function () {
|
||||||
response.statusCode.should.eql(200);
|
response.statusCode.should.eql(200);
|
||||||
response.template.should.eql('default');
|
response.template.should.eql('default');
|
||||||
|
|
||||||
// default tempalte does not list posts
|
// default template does not list posts
|
||||||
$('.post-card').length.should.equal(0);
|
$('.post-card').length.should.equal(0);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -3124,7 +3124,7 @@ describe('Integration - Web - Site', function () {
|
||||||
response.statusCode.should.eql(200);
|
response.statusCode.should.eql(200);
|
||||||
response.template.should.eql('default');
|
response.template.should.eql('default');
|
||||||
|
|
||||||
// default tempalte does not list posts
|
// default template does not list posts
|
||||||
$('.post-card').length.should.equal(0);
|
$('.post-card').length.should.equal(0);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -4824,7 +4824,7 @@ describe('Integration - Web - Site', function () {
|
||||||
response.statusCode.should.eql(200);
|
response.statusCode.should.eql(200);
|
||||||
response.template.should.eql('default');
|
response.template.should.eql('default');
|
||||||
|
|
||||||
// default tempalte does not list posts
|
// default template does not list posts
|
||||||
$('.post-card').length.should.equal(0);
|
$('.post-card').length.should.equal(0);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue