From 270af89ee26169302f77504b11d066c0f0788db6 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 8 Apr 2020 12:26:50 +1000 Subject: [PATCH] Fixed typo tempalte -> template (#11722) no issue - Fixes al typo in test/regression/site/site_spec.js. Should read `template` rather than `tempalte`. --- test/regression/site/site_spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/regression/site/site_spec.js b/test/regression/site/site_spec.js index 339dd7de60..ab4af61f07 100644 --- a/test/regression/site/site_spec.js +++ b/test/regression/site/site_spec.js @@ -1424,7 +1424,7 @@ describe('Integration - Web - Site', function () { response.statusCode.should.eql(200); response.template.should.eql('default'); - // default tempalte does not list posts + // default template does not list posts $('.post-card').length.should.equal(0); }); }); @@ -3124,7 +3124,7 @@ describe('Integration - Web - Site', function () { response.statusCode.should.eql(200); response.template.should.eql('default'); - // default tempalte does not list posts + // default template does not list posts $('.post-card').length.should.equal(0); }); }); @@ -4824,7 +4824,7 @@ describe('Integration - Web - Site', function () { response.statusCode.should.eql(200); response.template.should.eql('default'); - // default tempalte does not list posts + // default template does not list posts $('.post-card').length.should.equal(0); }); });