forked from wallabag/wallabag
Fix tests for all
This commit is contained in:
@ -162,24 +162,6 @@ class EntryRepository extends EntityRepository
|
||||
return $languages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Used only in test case to get the right entry associated to the right user
|
||||
*
|
||||
* @param string $username
|
||||
*
|
||||
* @return Entry
|
||||
*/
|
||||
public function findOneByUsernameAndNotStarred($username)
|
||||
{
|
||||
return $this->createQueryBuilder('e')
|
||||
->leftJoin('e.user', 'u')
|
||||
->where('u.username = :username')->setParameter('username', $username)
|
||||
->andWhere('e.isStarred = false')
|
||||
->setMaxResults(1)
|
||||
->getQuery()
|
||||
->getSingleResult();
|
||||
}
|
||||
|
||||
/**
|
||||
* Used only in test case to get the right entry associated to the right user
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user