Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
chore: Rev the version
Browse files Browse the repository at this point in the history
  • Loading branch information
tunderwood committed Jan 29, 2021
1 parent a1f0187 commit 21b8f94
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
version=3.2.2
version=3.2.3
groupId=com.nike
artifactId=cerberus-spring-boot-client
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

package com.nike.cerberus.springboot;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.assertEquals;

import com.fieldju.commons.EnvUtils;
import com.nike.cerberus.client.CerberusClient;
Expand All @@ -32,6 +32,9 @@
import java.util.concurrent.Executors;
import org.apache.commons.lang3.RandomStringUtils;
import org.junit.*;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

public class CerberusSpringBootClientIntegrationTests {

Expand All @@ -43,7 +46,7 @@ public class CerberusSpringBootClientIntegrationTests {
private Map<String, String> secretData;
private ExecutorService executorService = Executors.newSingleThreadExecutor();

@Before
@BeforeEach
public void before() {
EnvUtils.getRequiredEnv("CERBERUS_URL");
EnvUtils.getRequiredEnv("CERBERUS_REGION");
Expand All @@ -62,7 +65,7 @@ public void before() {
executorService.submit(() -> app.run());
}

@After
@AfterEach
public void after() {
app.shutdown();
}
Expand Down

0 comments on commit 21b8f94

Please sign in to comment.