Skip to content

Commit

Permalink
Fix package name for issue 574 (#2960)
Browse files Browse the repository at this point in the history
* Fix package name for issue 574

* [fix] Correct the test location for issue574
  • Loading branch information
hazendaz committed Apr 21, 2024
1 parent 99d354c commit 1342c0f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Expand Up @@ -23,7 +23,7 @@ class Issue574Test extends AbstractIntegrationTest {
*/
@Test
void testSerializedNameAnnotation() {
performAnalysis("ghIssues/Issue574SerializedName.class");
performAnalysis("ghIssues/issue574/Issue574SerializedName.class");
BugInstanceMatcher bugTypeMatcher = new BugInstanceMatcherBuilder()
.bugType(DESIRED_BUG_TYPE)
.build();
Expand All @@ -36,7 +36,7 @@ void testSerializedNameAnnotation() {
*/
@Test
void testXmlElementAnnotation() {
performAnalysis("ghIssues/Issue574XmlElement.class");
performAnalysis("ghIssues/issue574/Issue574XmlElement.class");
BugInstanceMatcher bugTypeMatcher = new BugInstanceMatcherBuilder()
.bugType(DESIRED_BUG_TYPE)
.build();
Expand All @@ -49,8 +49,8 @@ void testXmlElementAnnotation() {
*/
@Test
void testRegisterExtensionAnnotation() {
performAnalysis("ghIssues/Issue574RegisterExtension.class",
"ghIssues/BypassFileNotFoundExceptionExtension.class");
performAnalysis("ghIssues/issue574/Issue574RegisterExtension.class",
"ghIssues/issue574/BypassFileNotFoundExceptionExtension.class");
BugInstanceMatcher bugTypeMatcher = new BugInstanceMatcherBuilder()
.bugType(DESIRED_BUG_TYPE)
.build();
Expand Down
@@ -1,4 +1,4 @@
package ghIssues;
package ghIssues.issue574;

import java.io.FileNotFoundException;

Expand Down
@@ -1,4 +1,4 @@
package ghIssues;
package ghIssues.issue574;

import org.junit.jupiter.api.extension.RegisterExtension;

Expand Down
@@ -1,4 +1,4 @@
package ghIssues;
package ghIssues.issue574;

import org.junit.Test;

Expand Down
@@ -1,4 +1,4 @@
package ghIssues;
package ghIssues.issue574;

import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlElement;
Expand Down

0 comments on commit 1342c0f

Please sign in to comment.