mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-23 14:26:58 +00:00
Added the $range argument to every test that might need it. See #170
This commit is contained in:
@@ -60,7 +60,7 @@ class BillControllerTest extends TestCase
|
||||
/**
|
||||
* @covers FireflyIII\Http\Controllers\BillController::index
|
||||
*/
|
||||
public function testIndex()
|
||||
public function testIndex($range)
|
||||
{
|
||||
$this->be($this->user());
|
||||
$this->call('GET', '/bills');
|
||||
@@ -70,7 +70,7 @@ class BillControllerTest extends TestCase
|
||||
/**
|
||||
* @covers FireflyIII\Http\Controllers\BillController::rescan
|
||||
*/
|
||||
public function testRescan()
|
||||
public function testRescan($range)
|
||||
{
|
||||
$this->be($this->user());
|
||||
$this->call('GET', '/bills/rescan/1');
|
||||
@@ -81,7 +81,7 @@ class BillControllerTest extends TestCase
|
||||
/**
|
||||
* @covers FireflyIII\Http\Controllers\BillController::show
|
||||
*/
|
||||
public function testShow()
|
||||
public function testShow($range)
|
||||
{
|
||||
$this->be($this->user());
|
||||
$this->call('GET', '/bills/show/1');
|
||||
|
Reference in New Issue
Block a user