Skip to content

Commit

Permalink
FIX: remove hardwired directory "dspot"
Browse files Browse the repository at this point in the history
  • Loading branch information
monperrus authored and danglotb committed Aug 2, 2019
1 parent 9c8e791 commit 525e479
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public interface Coverage {

public static final String SERIALIZE_NAME = "Coverage";

public static final String OUTPUT_DIR = "target" + ConstantsHelper.FILE_SEPARATOR + "dspot" + ConstantsHelper.FILE_SEPARATOR;
public static final String OUTPUT_DIR = "target" + ConstantsHelper.FILE_SEPARATOR;

public static final String EXTENSION = ".ser";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public interface CoveragePerTestMethod extends Serializable {

public static final String SERIALIZE_NAME = "CoveragePerTest";

public static final String OUTPUT_DIR = "target" + ConstantsHelper.FILE_SEPARATOR + "dspot" + ConstantsHelper.FILE_SEPARATOR;
public static final String OUTPUT_DIR = "target" + ConstantsHelper.FILE_SEPARATOR;

public static final String EXTENSION = ".ser";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public interface TestResult extends Serializable {

public static final String SERIALIZE_NAME = "TestResult";

public static final String OUTPUT_DIR = "target" + ConstantsHelper.FILE_SEPARATOR + "dspot" + ConstantsHelper.FILE_SEPARATOR;
public static final String OUTPUT_DIR = "target" + ConstantsHelper.FILE_SEPARATOR;

public static final String EXTENSION = ".ser";

Expand Down

0 comments on commit 525e479

Please sign in to comment.