File tree Expand file tree Collapse file tree
handlebars/src/test/java/com/github/jknack/handlebars Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ public void testHelperAWithContext() throws IOException {
3333 }
3434
3535 @ Test
36- public void testHelperAWithConextAndOptions () throws IOException {
37- shouldCompileTo ("{{helperAWithConextAndOptions }}" , $ (), "helperAWithConextAndOptions " );
36+ public void testHelperAWithContextAndOptions () throws IOException {
37+ shouldCompileTo ("{{helperAWithContextAndOptions }}" , $ (), "helperAWithContextAndOptions " );
3838 }
3939
4040 @ Test
@@ -138,10 +138,10 @@ public String helperAWithOptions(final Options options) {
138138 return "helperAWithOptions" ;
139139 }
140140
141- public String helperAWithConextAndOptions (final Hash hash , final Options options ) {
141+ public String helperAWithContextAndOptions (final Hash hash , final Options options ) {
142142 assertNotNull (hash );
143143 assertNotNull (options );
144- return "helperAWithConextAndOptions " ;
144+ return "helperAWithContextAndOptions " ;
145145 }
146146
147147 public StringBuilder helperWithParams (final String context , final boolean p0 , final int p1 ) {
You can’t perform that action at this time.
0 commit comments