@@ -31,7 +31,7 @@ public void i18nJs() throws Exception {
3131 plugin .setSuffix (".html" );
3232 plugin .setOutput ("target/helpers-i18njs.js" );
3333 plugin .setProject (newProject ());
34- plugin .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
34+ plugin .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
3535
3636 plugin .execute ();
3737
@@ -57,7 +57,7 @@ public void chooseSpecificFiles() throws Exception {
5757 plugin .addTemplate ("a" );
5858 plugin .addTemplate ("c" );
5959 plugin .setProject (newProject ());
60- plugin .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
60+ plugin .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
6161
6262 plugin .execute ();
6363
@@ -71,7 +71,7 @@ public void outputDirMustBeCreated() throws Exception {
7171 plugin .setSuffix (".html" );
7272 plugin .setOutput ("target/newdir/helpers.js" );
7373 plugin .setProject (newProject ());
74- plugin .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
74+ plugin .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
7575
7676 plugin .execute ();
7777 }
@@ -83,7 +83,7 @@ public void missingHelperMustBeSilent() throws Exception {
8383 plugin .setSuffix (".html" );
8484 plugin .setOutput ("target/missing-helpers.js" );
8585 plugin .setProject (newProject ());
86- plugin .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
86+ plugin .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
8787
8888 plugin .execute ();
8989 }
@@ -95,7 +95,7 @@ public void noFileMustBeCreatedIfNoTemplatesWereFound() throws Exception {
9595 plugin .setSuffix (".html" );
9696 plugin .setOutput ("target/no-helpers.js" );
9797 plugin .setProject (newProject ());
98- plugin .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
98+ plugin .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
9999
100100 plugin .execute ();
101101
@@ -146,7 +146,7 @@ public void mustFailOnUnExpectedException() throws Exception {
146146 plugin .setSuffix (".html" );
147147 plugin .setOutput ("target/no-helpers.js" );
148148 plugin .setProject (project );
149- plugin .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
149+ plugin .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
150150
151151 plugin .execute ();
152152 });
@@ -159,7 +159,7 @@ public void fileWithRuntimeMustBeLargerThanNormalFiles() throws Exception {
159159 withoutRT .setSuffix (".html" );
160160 withoutRT .setOutput ("target/without-rt-helpers.js" );
161161 withoutRT .setProject (newProject ());
162- withoutRT .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
162+ withoutRT .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
163163
164164 withoutRT .execute ();
165165
@@ -169,7 +169,7 @@ public void fileWithRuntimeMustBeLargerThanNormalFiles() throws Exception {
169169 withRT .setOutput ("target/with-rt-helpers.js" );
170170 withRT .setRuntime ("src/test/resources/handlebars.runtime.js" );
171171 withRT .setProject (newProject ());
172- withRT .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
172+ withRT .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
173173
174174 withRT .execute ();
175175
@@ -186,7 +186,7 @@ public void normalFileShouleBeLargerThanMinimizedFiles() throws Exception {
186186 withoutRT .setSuffix (".html" );
187187 withoutRT .setOutput ("target/helpers-normal.js" );
188188 withoutRT .setProject (newProject ());
189- withoutRT .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
189+ withoutRT .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
190190
191191 withoutRT .execute ();
192192
@@ -196,7 +196,7 @@ public void normalFileShouleBeLargerThanMinimizedFiles() throws Exception {
196196 withRT .setOutput ("target/helpers.min.js" );
197197 withRT .setMinimize (true );
198198 withRT .setProject (newProject ());
199- withRT .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
199+ withRT .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
200200 withRT .execute ();
201201
202202 assertTrue (
@@ -212,7 +212,7 @@ public void partials() throws Exception {
212212 plugin .setSuffix (".html" );
213213 plugin .setOutput ("target/helpers.js" );
214214 plugin .setProject (newProject ());
215- plugin .setHandlebarsJsFile ("/handlebars-v4.7.7 .js" );
215+ plugin .setHandlebarsJsFile ("/handlebars-v4.7.8 .js" );
216216
217217 plugin .execute ();
218218
0 commit comments