Skip to content

Commit

Permalink
Merge pull request #513 from nrainer/fix/full_mutation_matrix_in_incr…
Browse files Browse the repository at this point in the history
…emental

Fix mutation matrix in incremental analyzer
  • Loading branch information
hcoles authored Sep 10, 2018
2 parents b8e826a + 17021e6 commit 5baad7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private MutationResult analyseFromHistory(final MutationDetails each,
if ((mutationStatusTestPair.getStatus() == DetectionStatus.KILLED)
&& killingTestHasNotChanged(each, mutationStatusTestPair)) {
return makeResult(each, DetectionStatus.KILLED, mutationStatusTestPair
.getKillingTests(), mutationStatusTestPair.getKillingTests());
.getKillingTests(), mutationStatusTestPair.getSucceedingTests());
}

if ((mutationStatusTestPair.getStatus() == DetectionStatus.SURVIVED)
Expand Down

0 comments on commit 5baad7f

Please sign in to comment.