diff --git a/src/Runner/TestHandler.php b/src/Runner/TestHandler.php index 1b38068f..a4a0f041 100644 --- a/src/Runner/TestHandler.php +++ b/src/Runner/TestHandler.php @@ -176,7 +176,7 @@ private function initiateTestCase(Test $test, $foo, PhpInterpreter $interpreter) $methods = null; if ($this->tempDir) { - $cacheFile = $this->tempDir . DIRECTORY_SEPARATOR . 'TestHandler.testCase.' . substr(md5($test->getSignature()), 0, 5) . '.list'; + $cacheFile = $this->tempDir . DIRECTORY_SEPARATOR . 'TestHandler.testCase.' . md5($test->getSignature()) . '.list'; if (is_file($cacheFile)) { $cache = unserialize(file_get_contents($cacheFile));