Skip to content

Commit

Permalink
PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-worman committed Jan 16, 2024
1 parent cd86f6a commit 6215d0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Zend/Form/FormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3990,7 +3990,7 @@ public function testFormsShouldAllowResetting()
$form->reset();
$test = $form->getValues();
$this->assertNotEquals($values, $test);
$this->assertEquals(0, array_sum($test));
$this->assertSame([], $test);
}

/**
Expand Down

0 comments on commit 6215d0e

Please sign in to comment.