1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-04-20 23:11:56 +02:00

Update tests for changed link creation behavior

This commit is contained in:
Kovah 2020-12-17 22:39:54 +01:00
parent 0350584b16
commit d7750546ea
No known key found for this signature in database
GPG Key ID: AAAA031BA9830D7B
2 changed files with 0 additions and 4 deletions

View File

@ -81,8 +81,6 @@ class LinkApiTest extends ApiTestCase
$databaseLink = Link::first();
$this->assertEquals('http://example.com', $databaseLink->url);
Queue::assertPushed(SaveLinkToWaybackmachine::class);
}
public function testCreateRequestWithTagsAsString(): void

View File

@ -69,8 +69,6 @@ class LinkControllerTest extends TestCase
$this->assertEquals('https://example.com', $databaseLink->url);
$this->assertEquals('Example Title', $databaseLink->title);
Queue::assertPushed(SaveLinkToWaybackmachine::class);
}
public function testFullStoreRequest(): void