Fix Appframework tests with phpunit 5.2+

This commit is contained in:
Joas Schilling 2016-07-01 16:05:00 +02:00
parent 197e94457f
commit ea9c79b7c0
No known key found for this signature in database
GPG key ID: 70A0B324C41C0946

View file

@ -236,7 +236,9 @@ class MapperTest extends MapperTestUtility {
$entity->resetUpdatedFields();
$this->db->expects($this->never())
->method('prepareQuery');
->method('prepare');
$this->db->expects($this->never())
->method('prepare');
$this->mapper->update($entity);
}