Skip to content

Commit

Permalink
#1146 fresh qulice
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Aug 26, 2022
1 parent 139e297 commit 60b8477
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ SOFTWARE.
<plugin>
<groupId>com.qulice</groupId>
<artifactId>qulice-maven-plugin</artifactId>
<version>0.21.1</version>
<version>0.22.0</version>
<configuration>
<excludes>
<exclude>checkstyle:/src/site/resources/.*</exclude>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@
* Test case for {@link App}.
* @since 0.16
*/
public final class AppITCase {
final class AppITCase {

/**
* Home with Takes server.
*/
private static final String HOME = System.getProperty("takes.home");

@Test
public void justWorks() throws Exception {
void justWorks() throws Exception {
Assertions.assertNotNull(AppITCase.HOME);
new JdkRequest(String.format("%s/f", AppITCase.HOME))
.through(VerboseWire.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
* Test case for {@link org.takes.http.FtBasic}.
* @since 0.1
*/
public final class AppTest {
final class AppTest {

@Test
public void justWorks(@TempDir final Path temp) throws Exception {
void justWorks(@TempDir final Path temp) throws Exception {
final File dir = temp.toFile();
Files.write(new File(dir, "hello.txt").toPath(), "hello, world!".getBytes());
new FtRemote(new App(dir)).exec(
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/takes/rq/RqFakeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* @since 0.24
*/
@SuppressWarnings("PMD.AvoidUsingHardCodedIP")
public final class RqFakeTest {
final class RqFakeTest {

@Test
void conformsToEquality() {
Expand Down

0 comments on commit 60b8477

Please sign in to comment.