Re-enable and fix tests for Boot 2.6 upgrade

* Make constructor public
* Appease checkstyle/format gods
* Bump to testcontainers 1.16.3
* Bump to redis testcontainers 2.0.11
* Fix circular bean dependencies in the configuration classes
This commit is contained in:
Chris Bono
2022-01-26 10:32:24 -06:00
committed by GitHub
parent 0dd24b678b
commit 017d03fe92
25 changed files with 90 additions and 114 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2021 the original author or authors.
* Copyright 2015-2022 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.
@@ -19,7 +19,6 @@ package org.springframework.cloud.stream.app.processor.script;
import java.io.IOException;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.boot.WebApplicationType;
@@ -44,7 +43,6 @@ import static org.assertj.core.api.Assertions.assertThat;
* @author Chris Schaefer
* @author Soby Chacko
*/
@Disabled
public class ScriptProcessorIntegrationTests {
@Test