From a54e0e048a31cba23e3ac4011d1c1d551a8977e1 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Wed, 28 Nov 2018 11:29:52 +0000 Subject: [PATCH] Fix wording for integration test run through example * Includes grammar fixes by @jschirp --- docs/mutant-minitest.md | 5 +++-- docs/mutant-rspec.md | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) 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 --------------