diff --git a/java-snapshot-testing-core/src/main/java/au/com/origin/snapshots/SnapshotFile.java b/java-snapshot-testing-core/src/main/java/au/com/origin/snapshots/SnapshotFile.java index 4a19972..079476f 100644 --- a/java-snapshot-testing-core/src/main/java/au/com/origin/snapshots/SnapshotFile.java +++ b/java-snapshot-testing-core/src/main/java/au/com/origin/snapshots/SnapshotFile.java @@ -32,7 +32,7 @@ public class SnapshotFile { @Getter private Set snapshots = Collections.synchronizedSortedSet(new TreeSet<>()); private Set debugSnapshots = Collections.synchronizedSortedSet(new TreeSet<>()); - SnapshotFile(String srcDirPath, String fileName, Class testClass) throws IOException { + public SnapshotFile(String srcDirPath, String fileName, Class testClass) throws IOException { this.testClass = testClass; this.fileName = srcDirPath + File.separator + fileName; log.info("Snapshot File: " + this.fileName);