[Actor] Refactor GSActor into Actor

This commit is contained in:
2021-09-18 03:22:27 +01:00
parent 6c899b7b61
commit 941cbe6599
73 changed files with 489 additions and 484 deletions

View File

@@ -19,7 +19,7 @@
namespace App\Tests\Util\Notification;
use App\Entity\GSActor;
use App\Entity\Actor;
use App\Util\Notification\Notification;
use Jchook\AssertThrows\AssertThrows;
use PHPUnit\Framework\TestCase;
@@ -30,6 +30,6 @@ class NotificationTest extends TestCase
public function testNotificationBitmap()
{
static::assertTrue((new Notification(Notification::DM, new GSActor())) instanceof Notification);
static::assertTrue((new Notification(Notification::DM, new Actor())) instanceof Notification);
}
}