Skip to content

Commit d9f9602

Browse files
committedOct 29, 2014
Merge pull request #4 from jorgemudry/master
Fix typo when calling parseDocBlock method
2 parents 4d90fd0 + 95eccd7 commit d9f9602

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎PHPUnit/Util/Log/VCR.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public function startTest(PHPUnit_Framework_Test $test)
119119
$doc_block = $reflection->getDocComment();
120120

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.