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
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2020 the original author or authors.
* Copyright 2012-2025 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.
Expand Down 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
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2020 the original author or authors.
* Copyright 2012-2025 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.
Expand Down 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
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2020 the original author or authors.
* Copyright 2012-2025 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.
Expand Down 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