Skip to content

Commit

Permalink
Merge pull request #4 from jorgemudry/master
Browse files Browse the repository at this point in the history
Fix typo when calling parseDocBlock method
  • Loading branch information
adri committed Oct 29, 2014
2 parents 4d90fd0 + 95eccd7 commit d9f9602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PHPUnit/Util/Log/VCR.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function startTest(PHPUnit_Framework_Test $test)
$doc_block = $reflection->getDocComment();

// Use regex to parse the doc_block for a specific annotation
$parsed = $self::parseDocBlock($doc_block, '@vcr');
$parsed = self::parseDocBlock($doc_block, '@vcr');
$cassetteName = array_pop($parsed);

// If the cassette name ends in .json, then use the JSON storage format
Expand Down

0 comments on commit d9f9602

Please sign in to comment.