mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-25 18:30:55 -06:00
Fix more tests.
This commit is contained in:
parent
8b5a775dc5
commit
30e3ed6410
@ -86,7 +86,7 @@ class TagRepository implements TagRepositoryInterface
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function connect(TransactionJournal $journal, Tag $tag): Collection
|
||||
public function connect(TransactionJournal $journal, Tag $tag): bool
|
||||
{
|
||||
/*
|
||||
* Already connected:
|
||||
|
@ -6,6 +6,7 @@
|
||||
* This software may be modified and distributed under the terms
|
||||
* of the MIT license. See the LICENSE file for details.
|
||||
*/
|
||||
use Illuminate\Support\Collection;
|
||||
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
||||
|
||||
|
||||
@ -177,10 +178,10 @@ class CsvControllerTest extends TestCase
|
||||
$importer->shouldReceive('setData')->once()->with($data);
|
||||
$importer->shouldReceive('run')->once()->withNoArgs();
|
||||
|
||||
$importer->shouldReceive('getRows')->once()->withNoArgs();
|
||||
$importer->shouldReceive('getErrors')->once()->withNoArgs();
|
||||
$importer->shouldReceive('getImported')->once()->withNoArgs();
|
||||
$importer->shouldReceive('getJournals')->once()->withNoArgs();
|
||||
$importer->shouldReceive('getRows')->once()->withNoArgs()->andReturn(0);
|
||||
$importer->shouldReceive('getErrors')->once()->withNoArgs()->andReturn([]);
|
||||
$importer->shouldReceive('getImported')->once()->withNoArgs()->andReturn(0);
|
||||
$importer->shouldReceive('getJournals')->once()->withNoArgs()->andReturn(new Collection);
|
||||
|
||||
$this->call('GET', '/csv/process');
|
||||
$this->assertResponseStatus(200);
|
||||
|
Loading…
Reference in New Issue
Block a user