1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-08 22:26:46 +02:00

feat(tests): improve tests for ArraysFilterHelper #477

This commit is contained in:
Awilum
2020-11-24 19:05:34 +03:00
parent d40ed45900
commit 9850e46ad3

View File

@@ -46,7 +46,7 @@ test('test arrays_filter() method', function () {
$this->assertTrue(arrays_filter($data, ['return' => 'exists']));
// return: shuffle
$this->assertNotEquals(
$this->assertContains(
arrays_filter($data, ['return' => 'shuffle']),
arrays_filter($data, ['return' => 'shuffle'])
);