Skip to content

Commit

Permalink
refactor: fix a minor typo
Browse files Browse the repository at this point in the history
  • Loading branch information
buehner authored and groldan committed Sep 27, 2024
1 parent df171dc commit bc24772
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class CatalogApplicationEventsConfigurationTest {

@Test
void testCatalogEventBroadcasterHasSetUpItself() {
Optional<CatalogListener> publiherListener =
Optional<CatalogListener> publisherListener =
catalog.getListeners().stream()
.filter(
l ->
Expand All @@ -92,12 +92,12 @@ void testCatalogEventBroadcasterHasSetUpItself() {
CatalogApplicationEventPublisher
.LocalCatalogEventPublisher)
.findFirst();
assertTrue(publiherListener.isPresent());
assertTrue(publisherListener.isPresent());
}

@Test
void testConfigEventBroadcasterHasSetUpItself() {
Optional<ConfigurationListener> publiherListener =
Optional<ConfigurationListener> publisherListener =
geoserver.getListeners().stream()
.filter(
l ->
Expand All @@ -106,7 +106,7 @@ void testConfigEventBroadcasterHasSetUpItself() {
CatalogApplicationEventPublisher
.LocalConfigEventPublisher)
.findFirst();
assertTrue(publiherListener.isPresent());
assertTrue(publisherListener.isPresent());
}

@Test
Expand Down

0 comments on commit bc24772

Please sign in to comment.