Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class SnapshotFile {
@Getter private Set<Snapshot> snapshots = Collections.synchronizedSortedSet(new TreeSet<>());
private Set<Snapshot> 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);
Expand Down