Skip to content

Commit

Permalink
Allow sutFqcnResolver to return array
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Aug 3, 2019
1 parent 5d0711f commit 1451c0b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -76,7 +76,7 @@ public function startTest($test)
$cache = $r->getValue();
$cache = array_replace_recursive($cache, array(
\get_class($test) => array(
'covers' => array($sutFqcn),
'covers' => \is_array($sutFqcn) ? $sutFqcn : array($sutFqcn),
),
));
$r->setValue($testClass, $cache);
Expand Down

0 comments on commit 1451c0b

Please sign in to comment.