Fix typos
See gh-2019
This commit is contained in:
@@ -26,7 +26,7 @@ public class LifecycleContextBean extends LifecycleBean implements ApplicationCo
|
||||
public void afterPropertiesSet() {
|
||||
super.afterPropertiesSet();
|
||||
if (this.owningContext == null)
|
||||
throw new RuntimeException("Factory didn't call setAppliationContext before afterPropertiesSet on lifecycle bean");
|
||||
throw new RuntimeException("Factory didn't call setApplicationContext before afterPropertiesSet on lifecycle bean");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -195,7 +195,7 @@ public class ProducesRequestConditionTests {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void compareToMultipleExpressionsAndMultipeAcceptHeaderValues() {
|
||||
public void compareToMultipleExpressionsAndMultipleAcceptHeaderValues() {
|
||||
ProducesRequestCondition condition1 = new ProducesRequestCondition("text/*", "text/plain");
|
||||
ProducesRequestCondition condition2 = new ProducesRequestCondition("application/*", "application/xml");
|
||||
|
||||
|
||||
@@ -193,9 +193,9 @@ public class ReactiveTypeHandlerTests {
|
||||
testSseResponse(false);
|
||||
}
|
||||
|
||||
private void testSseResponse(boolean expectSseEimtter) throws Exception {
|
||||
private void testSseResponse(boolean expectSseEmitter) throws Exception {
|
||||
ResponseBodyEmitter emitter = handleValue(Flux.empty(), Flux.class, forClass(String.class));
|
||||
assertEquals(expectSseEimtter, emitter instanceof SseEmitter);
|
||||
assertEquals(expectSseEmitter, emitter instanceof SseEmitter);
|
||||
resetRequest();
|
||||
}
|
||||
|
||||
|
||||
@@ -919,7 +919,7 @@ public class BindTagTests extends AbstractTagTests {
|
||||
transform.setParent(message);
|
||||
try {
|
||||
transform.doStartTag();
|
||||
fail("Tag can be executed outside BindTag and inside messagtag");
|
||||
fail("Tag can be executed outside BindTag and inside messagetag");
|
||||
}
|
||||
catch (JspException e) {
|
||||
// this is ok!
|
||||
|
||||
@@ -270,7 +270,7 @@ public class BaseViewTests {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void attributeCSVParsingIgoresTrailingComma() {
|
||||
public void attributeCSVParsingIgnoresTrailingComma() {
|
||||
AbstractView v = new ConcreteView();
|
||||
v.setAttributesCSV("foo=[de],");
|
||||
assertEquals(1, v.getStaticAttributes().size());
|
||||
|
||||
Reference in New Issue
Block a user