Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class AutoRegisterPropertyFalseTests {
Boolean autoRegisterProperty;

@Test
public void veryifyBeans() {
public void verifyBeans() {
then(this.autoConfiguration).isNull();
then(this.autoServiceRegistration).isNull();
then(this.autoServiceRegistrationProperties).isNull();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class EnableDiscoveryClientAutoRegisterFalseTests {
Boolean autoRegisterProperty;

@Test
public void veryifyBeans() {
public void verifyBeans() {
then(this.autoConfiguration).isNull();
then(this.autoServiceRegistration).isNull();
then(this.autoServiceRegistrationProperties).isNull();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void picksUpHypermediaProperties() {
}

@Test
public void doesNotCreateCloudHypermediaPropertiesifNotActive() {
public void doesNotCreateCloudHypermediaPropertiesIfNotActive() {

try (ConfigurableApplicationContext context = getApplicationContext(Config.class)) {
then(context.getBeanNamesForType(CloudHypermediaProperties.class)).hasSize(0);
Expand All @@ -71,7 +71,7 @@ public void doesNotRegisterResourceRefresherIfNoDiscoveredResourceIsDefined() {
}

@Test
public void registersResourceRefresherIfDiscoverredResourceIsDefined() {
public void registersResourceRefresherIfDiscoveredResourceIsDefined() {

try (ConfigurableApplicationContext context = getApplicationContext(ConfigWithRemoteResource.class)) {

Expand Down
Loading