Skip to content

Commit

Permalink
Remove the TEXT_MATCH param from doTest
Browse files Browse the repository at this point in the history
  • Loading branch information
rickie committed Oct 1, 2021
1 parent 00e4f14 commit 0a79909
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void replacement() {
" @Scheduled(timeUnit = SECONDS, fixedDelay = 60, initialDelay = 6, fixedRate = 7) A scheduledCommonUnit();",
" @Scheduled(fixedDelay = 5, initialDelay = 6_000, fixedRate = 7_000) A scheduledNoSimplification();",
"}")
.doTest(BugCheckerRefactoringTestHelper.TestMode.TEXT_MATCH);
.doTest();
}

@Test
Expand All @@ -95,7 +95,7 @@ void replacementValueOnly() {
"interface A {",
" @Timeout(value = 1, unit = MINUTES) A simple();",
"}")
.doTest(BugCheckerRefactoringTestHelper.TestMode.TEXT_MATCH);
.doTest();
}

@Test
Expand All @@ -110,6 +110,6 @@ void replacementFqcn() {
"interface A {",
" @org.junit.jupiter.api.Timeout(value = 1, unit = MINUTES) A simple();",
"}")
.doTest(BugCheckerRefactoringTestHelper.TestMode.TEXT_MATCH);
.doTest();
}
}

0 comments on commit 0a79909

Please sign in to comment.