diff --git a/docs/mutant-minitest.md b/docs/mutant-minitest.md index ba8d0504..aca59b22 100644 --- a/docs/mutant-minitest.md +++ b/docs/mutant-minitest.md @@ -144,5 +144,6 @@ Mutations/s: 107.60 Coverage: 99.90% ``` -This shows mutant detected the redundant alive conditional. -Feel free to also remove some tests. Or do other modifications to either tests or code. +This shows mutant detected the alive mutation. Which shows the conditional we deliberately added above is redundant. + +Feel free to also remove some tests. Or do other modifications to either test or code. diff --git a/docs/mutant-rspec.md b/docs/mutant-rspec.md index 8e5ff0b5..03a7e69c 100644 --- a/docs/mutant-rspec.md +++ b/docs/mutant-rspec.md @@ -110,9 +110,9 @@ Mutations/s: 19.81 Coverage: 99.90% ``` -This shows mutant detected the redundant alive conditional. -Feel free to also remove some tests. Or do other modifications to either tests or code. -The integration into rspec. +This shows mutant detected the alive mutation. Which shows the conditional we deliberately added above is redundant. + +Feel free to also remove some tests. Or do other modifications to either test or code. Test-Selection --------------