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

Commit 0812223

Browse files
author
eweso
authored
Update ArrayInputTest.php
1 parent 47fc580 commit 0812223

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/ArrayInputTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@ public function testRequiredWithoutFallbackAndValueIsEmptyArrayThenFail()
3232
$input = $this->input;
3333
$input->setRequired(true);
3434
$input->setValue([]);
35-
3635
$this->assertFalse(
3736
$input->isValid(),
38-
'isValid() should be return always false when no fallback value, is required, and not data is set.'
37+
'isValid() should be return always false when no fallback value, is required, and value is empty array.'
3938
);
4039
$this->assertRequiredValidationErrorMessage($input);
4140
}

0 commit comments

Comments
 (0)