Skip to content

Commit

Permalink
Fixed mock of renamed class.
Browse files Browse the repository at this point in the history
  • Loading branch information
kriswallsmith authored and avalanche123 committed Dec 10, 2010
1 parent 2db4d07 commit 00a28ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Sitemap/Storage/Doctrine/ODM/MongoDBTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ public function testGetTotalPages()
}

/**
* @return Doctrine\ODM\MongoDB\MongoCursor
* @return Doctrine\ODM\MongoDB\Cursor
*/
protected function getMongoCursorMock()
{
return $this->getMock('Doctrine\ODM\MongoDB\MongoCursor', array('count', 'current', 'next', 'key', 'value', 'rewind', 'skip', 'limit'), array(), '', false, false);
return $this->getMock('Doctrine\ODM\MongoDB\Cursor', array('count', 'current', 'next', 'key', 'value', 'rewind', 'skip', 'limit'), array(), '', false, false);
}

/**
Expand Down

0 comments on commit 00a28ad

Please sign in to comment.