Remove references to short domain
This commit is contained in:
parent
328c9badb4
commit
7a58287b34
27 changed files with 215 additions and 404 deletions
|
@ -31,7 +31,7 @@ class NotesControllerTest extends TestCase
|
|||
public function specificNotePageLoads(): void
|
||||
{
|
||||
$note = Note::factory()->create();
|
||||
$response = $this->get($note->longurl);
|
||||
$response = $this->get($note->uri);
|
||||
$response->assertViewHas('note');
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ class NotesControllerTest extends TestCase
|
|||
{
|
||||
$note = Note::factory()->create();
|
||||
$response = $this->get('/note/' . $note->id);
|
||||
$response->assertRedirect($note->longurl);
|
||||
$response->assertRedirect($note->uri);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue