Skip to content

Commit

Permalink
chore: Update FileListCommandTest.php to fix assertion in test
Browse files Browse the repository at this point in the history
  • Loading branch information
ewilan-riviere committed Jul 25, 2024
1 parent 4a54c63 commit cccb6ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/FileListCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
expect($command->getFiles())->toBeArray();
expect($command->getOutput())->toBeString();
expect($command->getOutputArray())->toBeArray();
expect($command->getUser())->toBe($currentUser);
expect($command->getUser())->toContain($currentUser);
expect($command->isSuccess())->toBeTrue();
expect($command->toArray())->toBeArray();
});
Expand Down

0 comments on commit cccb6ca

Please sign in to comment.