0
Fork 0
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:
Tim Gates 2020-04-08 12:26:50 +10:00 committed by GitHub
parent 1daaf075aa
commit 270af89ee2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}); });
}); });