Skip to content

Commit

Permalink
Fix typo when calling parseDocBlock method
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgemudry committed Oct 28, 2014
1 parent 4d90fd0 commit 95eccd7
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 95eccd7

Please sign in to comment.