Skip to content

Commit 5c0bfda

Browse files
committed
Remove skip in tests for "Fix array_push param order for form filters"
1 parent a28a7dc commit 5c0bfda

2 files changed

Lines changed: 0 additions & 10 deletions

File tree

tests/ZfcUserTest/Form/ChangeEmailFilterTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,6 @@ public function testConstructIdentityEmail($onlyEmail)
4747
if ($onlyEmail === false) {
4848
$this->assertEquals(0, $inputs['identity']->getValidatorChain()->count());
4949
} else {
50-
// @todo remove this test skip if #383 is fixed
51-
if ($identity instanceof \Zend\InputFilter\Input && $identity->getValidatorChain()->count() == 0) {
52-
$this->markTestSkipped("currently we have a bug in this validator, pls fix #383");
53-
}
54-
5550
// test email as identity
5651
$validators = $identity->getValidatorChain()->getValidators();
5752
$this->assertArrayHasKey('instance', $validators[0]);

tests/ZfcUserTest/Form/ChangePasswordFilterTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,6 @@ public function testConstructIdentityEmail($onlyEmail)
4747
if ($onlyEmail === false) {
4848
$this->assertEquals(0, $inputs['identity']->getValidatorChain()->count());
4949
} else {
50-
// @todo remove this test skip if #383 is fixed
51-
if ($identity instanceof \Zend\InputFilter\Input && $identity->getValidatorChain()->count() == 0) {
52-
$this->markTestSkipped("currently we have a bug in this validator, pls fix #383");
53-
}
54-
5550
// test email as identity
5651
$validators = $identity->getValidatorChain()->getValidators();
5752
$this->assertArrayHasKey('instance', $validators[0]);

0 commit comments

Comments
 (0)