Skip to content

Commit

Permalink
Fix registry service ID expectations in CacheWarmer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmikola committed Aug 12, 2012
1 parent 4392458 commit 4e436c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tests/CacheWarmer/HydratorCacheWarmerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function testWarmCache()
->will($this->returnValue(false));
$container->expects($this->at(2))
->method('get')
->with($this->equalTo('doctrine_mongodb.odm'))
->with($this->equalTo('doctrine_mongodb'))
->will($this->returnValue($registry));
$container->expects($this->at(3))
->method('get')
Expand Down
2 changes: 1 addition & 1 deletion Tests/CacheWarmer/ProxyCacheWarmerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function testWarmCache()
->will($this->returnValue(false));
$container->expects($this->at(2))
->method('get')
->with($this->equalTo('doctrine_mongodb.odm'))
->with($this->equalTo('doctrine_mongodb'))
->will($this->returnValue($registry));
$container->expects($this->at(3))
->method('get')
Expand Down

0 comments on commit 4e436c9

Please sign in to comment.