Fix typo in class name MultipleConnectionPoolConfigurationsFailureAnalzyer

See gh-33751
pull/33774/head
Sébastien Deleuze 2 years ago committed by Moritz Halbritter
parent 7a148747a0
commit 4466bffe52

@ -1,5 +1,5 @@
/*
* Copyright 2012-2021 the original author or authors.
* Copyright 2012-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -25,7 +25,7 @@ import org.springframework.boot.diagnostics.FailureAnalyzer;
*
* @author Andy Wilkinson
*/
class MultipleConnectionPoolConfigurationsFailureAnalzyer
class MultipleConnectionPoolConfigurationsFailureAnalyzer
extends AbstractFailureAnalyzer<MultipleConnectionPoolConfigurationsException> {
@Override

@ -31,7 +31,7 @@ org.springframework.boot.autoconfigure.jdbc.HikariDriverConfigurationFailureAnal
org.springframework.boot.autoconfigure.jooq.NoDslContextBeanFailureAnalyzer,\
org.springframework.boot.autoconfigure.r2dbc.ConnectionFactoryBeanCreationFailureAnalyzer,\
org.springframework.boot.autoconfigure.r2dbc.MissingR2dbcPoolDependencyFailureAnalyzer,\
org.springframework.boot.autoconfigure.r2dbc.MultipleConnectionPoolConfigurationsFailureAnalzyer,\
org.springframework.boot.autoconfigure.r2dbc.MultipleConnectionPoolConfigurationsFailureAnalyzer,\
org.springframework.boot.autoconfigure.r2dbc.NoConnectionFactoryBeanFailureAnalyzer,\
org.springframework.boot.autoconfigure.session.NonUniqueSessionRepositoryFailureAnalyzer

@ -1,5 +1,5 @@
/*
* Copyright 2012-2021 the original author or authors.
* Copyright 2012-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -21,13 +21,13 @@ import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link MultipleConnectionPoolConfigurationsFailureAnalzyer}
* Tests for {@link MultipleConnectionPoolConfigurationsFailureAnalyzer}
*
* @author Andy Wilkinson
*/
class MultipleConnectionPoolConfigurationsFailureAnalzyerTests {
class MultipleConnectionPoolConfigurationsFailureAnalyzerTests {
private final MultipleConnectionPoolConfigurationsFailureAnalzyer failureAnalyzer = new MultipleConnectionPoolConfigurationsFailureAnalzyer();
private final MultipleConnectionPoolConfigurationsFailureAnalyzer failureAnalyzer = new MultipleConnectionPoolConfigurationsFailureAnalyzer();
@Test
void analyzeWhenDifferentFailureShouldReturnNull() {
Loading…
Cancel
Save