This commit is contained in:
Bernhard Posselt 2013-04-20 15:12:08 +02:00
Родитель 381f8efd10
Коммит afe9467f17
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -348,8 +348,8 @@ class ItemMapperTest extends \OCA\AppFramework\Utility\MapperTestUtility {
$this->api->expects($this->at(1))
->method('prepareQuery')
->with($this->equalTo($sql2))
->will(($this->returnValue($query2)));
->with($this->equalTo($sql2), $this->equalTo(1))
->will($this->returnValue($query2));
$result = $this->mapper->deleteReadOlderThanThreshold($threshold);
}