Skip to content

Commit 8535efd

Browse files
author
Facundo Viale
committed
Fix misspelled word
1 parent 4ee820e commit 8535efd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

handlebars/src/test/java/com/github/jknack/handlebars/ReflectiveHelperTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)