mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Disable amount debit and credit tests.
This commit is contained in:
@@ -39,8 +39,8 @@ class AddTagTest extends TestCase
|
||||
*/
|
||||
public function testActExistingTag(): void
|
||||
{
|
||||
$tag = Tag::inRandomOrder()->whereNull('deleted_at')->first();
|
||||
$journal = TransactionJournal::inRandomOrder()->whereNull('deleted_at')->first();
|
||||
$tag = $this->user()->tags()->inRandomOrder()->whereNull('deleted_at')->first();
|
||||
$journal = $this->user()->transactionJournals()->inRandomOrder()->whereNull('deleted_at')->first();
|
||||
$journal->tags()->sync([$tag->id]);
|
||||
$this->assertDatabaseHas('tag_transaction_journal', ['tag_id' => $tag->id, 'transaction_journal_id' => $journal->id]);
|
||||
$ruleAction = new RuleAction;
|
||||
|
Reference in New Issue
Block a user