Revert "Fix a test selection bug violating 1:1 principle"

This reverts commit d05f7fde25.
This commit is contained in:
Markus Schirp 2014-04-10 14:54:41 +00:00
parent 8f32ae78e6
commit 1fa4517305

View file

@ -68,7 +68,7 @@ module Mutant
#
def find_with(match_expression)
all_example_groups.select do |example_group|
example_group.description == match_expression
example_group.description.start_with?(match_expression)
end
end