Skip to content

Commit 349d8dd

Browse files
committed
! B Fixing missing approval file
1 parent c2f2cab commit 349d8dd

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello Approvals

approvaltests/src/main/java/org/approvaltests/reporters/DiffPrograms.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ public static class Linux
7171
public static DiffInfo DIFF_MERGE = new DiffInfo("/usr/bin/diffmerge", "--nosplash %s %s ", TEXT);
7272
public static DiffInfo MELD_MERGE = new DiffInfo(One.of("/usr/bin/meld", "/usr/local/bin/meld"), "%s %s ",
7373
TEXT);
74-
public static DiffInfo KDIFF3 = new DiffInfo("/usr/bin/kdiff3", "%s %s -m", TEXT);
74+
public static DiffInfo KDIFF3 = new DiffInfo("/usr/bin/kdiff3", "%s %s -m", TEXT);
7575
}
7676
}

approvaltests/src/main/java/org/approvaltests/reporters/KDiff3Reporter.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
import org.approvaltests.reporters.macosx.KDiff3MacReporter;
55
import org.approvaltests.reporters.windows.KDiff3WindowsReporter;
66

7-
public class KDiff3Reporter extends FirstWorkingReporter {
8-
public static final KDiff3Reporter INSTANCE = new KDiff3Reporter();
9-
public KDiff3Reporter() {
10-
super(KDiff3MacReporter.INSTANCE, KDiff3WindowsReporter.INSTANCE, KDiff3LinuxReporter.INSTANCE);
11-
}
7+
public class KDiff3Reporter extends FirstWorkingReporter
8+
{
9+
public static final KDiff3Reporter INSTANCE = new KDiff3Reporter();
10+
public KDiff3Reporter()
11+
{
12+
super(KDiff3MacReporter.INSTANCE, KDiff3WindowsReporter.INSTANCE, KDiff3LinuxReporter.INSTANCE);
13+
}
1214
}

0 commit comments

Comments
 (0)