diff --git a/tests/Core/DB/DBTest.php b/tests/Core/DB/DBTest.php index 53efdcd2c1..4154702362 100644 --- a/tests/Core/DB/DBTest.php +++ b/tests/Core/DB/DBTest.php @@ -54,7 +54,7 @@ class DBTest extends GNUsocialTestCase static::assertTrue(is_array($actor)); static::assertTrue($actor[0] instanceof GSActor); - $actor = DB::findBy('gsactor', ['and' => ['nickname' => 'taken_user', 'is_null' => 'bio', 'gte' => ['id' => 0], 'or' => ['normalized_nickname' => 'takenuser']]]); + $actor = DB::findBy('gsactor', ['and' => ['is_null' => 'bio', 'or' => ['nickname' => 'user does not exist', 'gte' => ['id' => 0]]]]); static::assertTrue(is_array($actor)); static::assertTrue($actor[0] instanceof GSActor); }