Skip to content

Commit

Permalink
Update RequestParameterTest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
usernane committed Jan 16, 2024
1 parent 9a2209d commit 981b565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/webfiori/tests/http/RequestParameterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public function testConstructor07() {
$this->assertFalse($requestParam->isEmptyStringAllowed());
$this->assertTrue($requestParam->isOptional());

$this->assertEquals(defined('PHP_FLOAT_MAX') ? PHP_FLOAT_MAX : 1.7976931348623157E+308, $requestParam->getMaxValue());
$this->assertEquals(defined('PHP_FLOAT_MAX') ? PHP_FLOAT_MAX : 1.7976931348623E+308, $requestParam->getMaxValue());
$this->assertEquals(defined('PHP_FLOAT_MIN') ? PHP_FLOAT_MIN : 2.2250738585072E-308,$requestParam->getMinValue());
$this->assertNull($requestParam->getDefault());
$this->assertNull($requestParam->getDescription());
Expand Down

0 comments on commit 981b565

Please sign in to comment.