mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-19 08:00:19 +00:00
Remove slash from method call.
This commit is contained in:
@@ -54,7 +54,7 @@ class SplitControllerTest extends TestCase
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Log::info(sprintf('Now in %s.', \get_class($this)));
|
||||
Log::info(sprintf('Now in %s.', get_class($this)));
|
||||
}
|
||||
|
||||
|
||||
@@ -210,7 +210,9 @@ class SplitControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController
|
||||
*/
|
||||
public function testEditOpeningBalance(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepository = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -232,7 +234,9 @@ class SplitControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
|
||||
*/
|
||||
public function testUpdate(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepository = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -290,7 +294,9 @@ class SplitControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
|
||||
*/
|
||||
public function testUpdateOpeningBalance(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepository = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -334,7 +340,9 @@ class SplitControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
|
||||
*/
|
||||
public function testUpdateTransfer(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepository = $this->mock(BudgetRepositoryInterface::class);
|
||||
@@ -392,7 +400,9 @@ class SplitControllerTest extends TestCase
|
||||
* @covers \FireflyIII\Http\Requests\SplitJournalFormRequest
|
||||
*/
|
||||
public function testUpdateWithdrawal(): void
|
||||
{
|
||||
{ $this->markTestIncomplete('Needs to be rewritten for v4.8.0');
|
||||
|
||||
return;
|
||||
$currencyRepository = $this->mock(CurrencyRepositoryInterface::class);
|
||||
$accountRepository = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetRepository = $this->mock(BudgetRepositoryInterface::class);
|
||||
|
||||
Reference in New Issue
Block a user