mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 03:39:00 +00:00
Added the $range argument to every test that might need it. See #170
This commit is contained in:
@@ -61,7 +61,7 @@ class TransactionControllerTest extends TestCase
|
||||
/**
|
||||
* @covers FireflyIII\Http\Controllers\TransactionController::index
|
||||
*/
|
||||
public function testIndex()
|
||||
public function testIndex($range)
|
||||
{
|
||||
$this->be($this->user());
|
||||
$this->call('GET', '/transactions/deposit');
|
||||
@@ -85,7 +85,7 @@ class TransactionControllerTest extends TestCase
|
||||
/**
|
||||
* @covers FireflyIII\Http\Controllers\TransactionController::show
|
||||
*/
|
||||
public function testShow()
|
||||
public function testShow($range)
|
||||
{
|
||||
$this->be($this->user());
|
||||
$this->call('GET', '/transaction/show/1');
|
||||
|
Reference in New Issue
Block a user