Skip to content

Commit 947f918

Browse files
committed
Moved non-compiling java file to non-compiling/checks
1 parent b7c273f commit 947f918

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

java-checks-test-sources/default/src/main/java/checks/UnusedVariablesFPCheck.java renamed to java-checks-test-sources/default/src/main/files/non-compiling/checks/UnusedVariablesFPCheck.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com;
1+
package checks;
22

33

44
public class UnusedVariablesFPCheck {

java-checks/src/test/java/org/sonar/java/checks/DeadStoreCheckTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void test_non_compiling() {
5454
@Test
5555
void test_fp() {
5656
CheckVerifier.newVerifier()
57-
.onFile(TestUtils.mainCodeSourcesPath("checks/UnusedVariablesFPCheck.java"))
57+
.onFile(TestUtils.nonCompilingTestSourcesPath("checks/UnusedVariablesFPCheck.java"))
5858
.withJavaVersion(14)
5959
.withCheck(new DeadStoreCheck())
6060
.verifyNoIssues();

0 commit comments

Comments
 (0)