Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit 2686225

Browse files
committed
[#22] missing input should not be represented in either valid or invalid input lists
1 parent 90eee85 commit 2686225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/BaseInputFilterTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ public function testMissingRequiredThatAllowsEmptyWithFallbackShouldMarkInputVal
10821082
$data = $filter->getValues();
10831083
$this->assertArrayHasKey('bar', $data);
10841084
$this->assertEquals($bar->getFallbackValue(), $data['bar']);
1085-
$this->assertArrayHasKey('bar', $filter->getValidInput());
1085+
$this->assertArrayNotHasKey('bar', $filter->getValidInput());
10861086
$this->assertArrayNotHasKey('bar', $filter->getInvalidInput());
10871087
}
10881088

0 commit comments

Comments
 (0)