We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2087b commit 09a5db7Copy full SHA for 09a5db7
java-snapshot-testing-core/src/main/java/au/com/origin/snapshots/SnapshotFile.java
@@ -32,7 +32,7 @@ public class SnapshotFile {
32
@Getter private Set<Snapshot> snapshots = Collections.synchronizedSortedSet(new TreeSet<>());
33
private Set<Snapshot> debugSnapshots = Collections.synchronizedSortedSet(new TreeSet<>());
34
35
- SnapshotFile(String srcDirPath, String fileName, Class<?> testClass) throws IOException {
+ public SnapshotFile(String srcDirPath, String fileName, Class<?> testClass) throws IOException {
36
this.testClass = testClass;
37
this.fileName = srcDirPath + File.separator + fileName;
38
log.info("Snapshot File: " + this.fileName);
0 commit comments