Skip to content

Commit

Permalink
refactor(test): Move SpaceAfterFinal to sniperPrinter package(INRIA#4311
Browse files Browse the repository at this point in the history
)
  • Loading branch information
algomaster99 authored Nov 29, 2021
1 parent 1d8a159 commit ab1edee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ void testSniperAddsSpaceAfterFinal() {
BiConsumer<CtType<?>, String> assertContainsSpaceAfterFinal = (type, result) ->
assertThat(result, containsString("private static final java.lang.Integer x;"));

testSniper("sniperPrint.SpaceAfterFinal", modifyField, assertContainsSpaceAfterFinal);
testSniper("sniperPrinter.SpaceAfterFinal", modifyField, assertContainsSpaceAfterFinal);
}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package sniperPrint;
package sniperPrinter;

public class SpaceAfterFinal {

Expand Down

0 comments on commit ab1edee

Please sign in to comment.