Merge pull request #22218 from XenoAmess

* gh-22218:
  Fix typos in test code

Closes gh-22218
This commit is contained in:
Andy Wilkinson 2020-07-07 10:02:13 +01:00
commit 597d6acabc
3 changed files with 4 additions and 4 deletions

View File

@ -43,8 +43,8 @@ import static org.assertj.core.api.Assertions.assertThat;
*/
@SpringBootTest
@ActiveProfiles({ "test1", "test2" })
@ContextConfiguration(loader = SpringBootTestWithActiveProfilesAndSytemEnvironmentPropertyTests.Loader.class)
public class SpringBootTestWithActiveProfilesAndSytemEnvironmentPropertyTests {
@ContextConfiguration(loader = SpringBootTestWithActiveProfilesAndSystemEnvironmentPropertyTests.Loader.class)
public class SpringBootTestWithActiveProfilesAndSystemEnvironmentPropertyTests {
@Autowired
private Environment environment;

View File

@ -57,7 +57,7 @@ class SoftReferenceConfigurationPropertyCacheTests {
}
@Test
void enableEnablesCachingWithUnlimtedTimeToLive() {
void enableEnablesCachingWithUnlimitedTimeToLive() {
this.cache.enable();
get(this.cache).assertCounts(0, 0);
tick(Duration.ofDays(300));

View File

@ -116,7 +116,7 @@ abstract class AbstractJettyServletWebServerFactoryTests extends AbstractServlet
if (handler instanceof HandlerWrapper) {
return findWebAppContext(((HandlerWrapper) handler).getHandler());
}
throw new IllegalStateException("No WebAppCotext found");
throw new IllegalStateException("No WebAppContext found");
}
}