Skip to content

Commit

Permalink
fix(rest/tests): Use correct package in RestEventListenerTest
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio-quintero committed Aug 10, 2023
1 parent f7c3ffd commit 9ad6d57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
@ConditionalOnProperty("rest.enabled")
@Getter
@Setter
public class RestEventListener implements EventListener {
class RestEventListener implements EventListener {

private static final Logger log = LoggerFactory.getLogger(RestEventListener.class);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@
* limitations under the License.
*/

package com.netflix.spinnaker.echo.events;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.netflix.spectator.api.NoopRegistry;
import com.netflix.spinnaker.echo.api.events.Event;
import com.netflix.spinnaker.echo.config.RestProperties;
import com.netflix.spinnaker.echo.config.RestUrls;
import com.netflix.spinnaker.echo.events.RestEventListener;
import com.netflix.spinnaker.echo.events.RestEventService;
import com.netflix.spinnaker.echo.events.SimpleEventTemplateEngine;
import com.netflix.spinnaker.echo.jackson.EchoObjectMapper;
import com.netflix.spinnaker.echo.rest.RestService;
import com.netflix.spinnaker.kork.core.RetrySupport;
Expand Down

0 comments on commit 9ad6d57

Please sign in to comment.