Change network/ to domain/view/

This commit is contained in:
2023-10-05 22:59:59 +11:00
parent 654e7bd2aa
commit 7a9b6d5015
7 changed files with 20 additions and 19 deletions

View File

@@ -26,7 +26,7 @@ class SiteAdminTest extends TestCase
$this->get('zone')
->assertRedirect('login');
$this->get('network/999')
$this->get('domain/view/999')
->assertNotFound();
Domain::factory()->create([
@@ -35,7 +35,7 @@ class SiteAdminTest extends TestCase
'public'=>TRUE,
]);
$this->get('network/999')
$this->get('domain/view/999')
->assertOK();
}