From a7d15ef2876ff37cdb1e12049adda90d048902f4 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 26 Oct 2020 06:45:24 +0100 Subject: [PATCH] Temp fix for tes --- .../Console/Commands/Correction/FixTransactionTypesTest.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/Feature/Console/Commands/Correction/FixTransactionTypesTest.php b/tests/Feature/Console/Commands/Correction/FixTransactionTypesTest.php index c9fd055109..d88131e964 100644 --- a/tests/Feature/Console/Commands/Correction/FixTransactionTypesTest.php +++ b/tests/Feature/Console/Commands/Correction/FixTransactionTypesTest.php @@ -34,9 +34,12 @@ class FixTransactionTypesTest extends TestCase */ public function testHandle(): void { + + + $this->artisan('firefly-iii:fix-transaction-types') ->expectsOutput(sprintf('Recurring transaction #%d should be a "%s" but is a "%s" and will be corrected.', - $recurring->id, 'Withdrawal','Transfer', + 1, 'Withdrawal','Transfer', )) ->assertExitCode(0); }