mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Improve test coverage.
This commit is contained in:
@@ -116,7 +116,7 @@ class AttachmentHelperTest extends TestCase
|
||||
'attachable_id' => $journal->id,
|
||||
'user_id' => $this->user()->id,
|
||||
'attachable_type' => TransactionJournal::class,
|
||||
'md5' => md5('Hello' . random_int(1, 10000)),
|
||||
'md5' => md5('Hello' . $this->randomInt()),
|
||||
'filename' => 'file.txt',
|
||||
'title' => 'Some title',
|
||||
'description' => 'Some descr',
|
||||
@@ -151,7 +151,7 @@ class AttachmentHelperTest extends TestCase
|
||||
'attachable_id' => $journal->id,
|
||||
'user_id' => $this->user()->id,
|
||||
'attachable_type' => TransactionJournal::class,
|
||||
'md5' => md5('Hello' . random_int(1, 10000)),
|
||||
'md5' => md5('Hello' . $this->randomInt()),
|
||||
'filename' => 'file.txt',
|
||||
'title' => 'Some title',
|
||||
'description' => 'Some descr',
|
||||
|
Reference in New Issue
Block a user