Skip to content

Commit ed11a6e

Browse files
Fix name and description
1 parent 6aa80c9 commit ed11a6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/openrewrite/java/testing/search/FindUnitTestTable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
public class FindUnitTestTable extends DataTable<FindUnitTestTable.Row> {
2424
public FindUnitTestTable(Recipe recipe) {
2525
super(recipe,
26-
recipe.getName(),
27-
recipe.getDescription());
26+
"Methods in unit tests",
27+
"Method declarations used in unit tests");
2828
}
2929

3030
@Value

0 commit comments

Comments
 (0)