Skip to content

Commit a1aff29

Browse files
committed
a reformat code
1 parent c2d379b commit a1aff29

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

approvaltests-tests/src/test/java/org/approvaltests/machine_specific_tests/reporters/GenericDiffReporterTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ public class GenericDiffReporterTest extends MachineSpecificTest
2020
@Test
2121
public void testGetWorkingReportersForEnvironment()
2222
{
23-
Approvals.verifyAll("reporters", MacDiffReporter.INSTANCE.getWorkingReportersForEnviroment(), Approvals.NAMES.asMachineNameSpecificTest());
23+
Approvals.verifyAll("reporters", MacDiffReporter.INSTANCE.getWorkingReportersForEnviroment(),
24+
Approvals.NAMES.asMachineNameSpecificTest());
2425
}
2526
@Disabled("requires windows and TortoiseDiff installed")
2627
@Test

approvaltests/src/main/java/org/approvaltests/namer/NamerFactoryForOptions.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,15 @@ public Options withParameters(Options options, String... parameters)
3737
}
3838
return options;
3939
}
40-
41-
public FileCounter useMultipleFiles() {
40+
public FileCounter useMultipleFiles()
41+
{
4242
return new FileCounter();
4343
}
44-
45-
public static class FileCounter {
44+
public static class FileCounter
45+
{
4646
int counter;
47-
public Options next() {
47+
public Options next()
48+
{
4849
return new Options().forFile().withAdditionalInformation("" + ++counter);
4950
}
5051
}

0 commit comments

Comments
 (0)