Skip to content

Commit

Permalink
Migrate to the non-deprecated Prophecy method
Browse files Browse the repository at this point in the history
  • Loading branch information
stof committed Oct 14, 2021
1 parent a986553 commit b29a3da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Translator/Extractor/SymfonyExtractorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function testExtract()
$symfonyExtractor->extract(Argument::exact($dir), Argument::exact($catalogue))->shouldHaveBeenCalled();
}
foreach ($nonDirPaths as $path) {
$symfonyExtractor->extract(Argument::exact($path), Argument::exact($catalogue))->shouldNotBeenCalled();
$symfonyExtractor->extract(Argument::exact($path), Argument::exact($catalogue))->shouldNotHaveBeenCalled();
}
}

Expand Down

0 comments on commit b29a3da

Please # to comment.