Skip to content

Commit

Permalink
dev: Fix a test in PocketImportatorTest
Browse files Browse the repository at this point in the history
The test failed randomly when the same tag was generated twice.
  • Loading branch information
marienfressinaud committed Nov 13, 2024
1 parent aadb978 commit 6165bfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/jobs/PocketImportatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,9 @@ public function testImportPocketItemsImportTags(): void
/** @var string */
$url = $this->fake('url');
/** @var string */
$tag1 = $this->fake('word');
$tag1 = $this->fakeUnique('word');
/** @var string */
$tag2 = $this->fake('word');
$tag2 = $this->fakeUnique('word');
$items = [
[
'given_url' => $url,
Expand Down

0 comments on commit 6165bfd

Please sign in to comment.