Skip to content

Commit 69aa7d1

Browse files
committed
Formatting
1 parent b89c402 commit 69aa7d1

File tree

1 file changed

+1
-1
lines changed
  • spring-javaformat-intellij-idea/spring-javaformat-intellij-idea-plugin/src/test/java/io/spring/format/formatter/intellij/codestyle

1 file changed

+1
-1
lines changed

spring-javaformat-intellij-idea/spring-javaformat-intellij-idea-plugin/src/test/java/io/spring/format/formatter/intellij/codestyle/SpringCodeStyleManagerTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public void reformatTextWithContextWhenCantFormatShouldCallDelegate() {
100100
given(this.springReformatter.canReformat(any())).willReturn(false);
101101
Collection<TextRange> ranges = Arrays.asList(new TextRange(10, 20));
102102
this.styleManager.reformatTextWithContext(this.file, ranges);
103-
ArgumentCaptor<ChangedRangesInfo> changedRanges = ArgumentCaptor.forClass(ChangedRangesInfo.class);
103+
ArgumentCaptor<ChangedRangesInfo> changedRanges = ArgumentCaptor.forClass(ChangedRangesInfo.class);
104104
verify(this.delegate).reformatTextWithContext(eq(this.file), changedRanges.capture());
105105
assertThat(changedRanges.getValue().allChangedRanges).containsExactlyElementsOf(ranges);
106106
}

0 commit comments

Comments
 (0)