Skip to content

Commit

Permalink
Fix copyright and method name
Browse files Browse the repository at this point in the history
  • Loading branch information
facewise committed Apr 24, 2024
1 parent 772c53e commit f365476
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 the original author or authors.
* Copyright 2012-2024 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.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 the original author or authors.
* Copyright 2012-2024 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.
Expand Down Expand Up @@ -51,7 +51,7 @@ class ConsoleIntegrationTests {
private final ToStringConsumer output = new ToStringConsumer().withRemoveAnsiCodes(false);

@Test
void runJarIn17() {
void runJarOn17() {
try (GenericContainer<?> container = createContainer(JDK_17_RUNTIME)) {
container.start();
assertThat(this.output.toString(StandardCharsets.ISO_8859_1)).contains("System.console() is null")
Expand All @@ -60,7 +60,7 @@ void runJarIn17() {
}

@Test
void runJarIn22() {
void runJarOn22() {
try (GenericContainer<?> container = createContainer(JDK_22_RUNTIME)) {
container.start();
assertThat(this.output.toString(StandardCharsets.ISO_8859_1)).doesNotContain("System.console() is null")
Expand Down

0 comments on commit f365476

Please sign in to comment.