diff --git a/app/tests/TestCase/Model/Table/MatchgridsTableTest.php b/app/tests/TestCase/Model/Table/MatchgridsTableTest.php index 9eac8edff..4a6a45049 100644 --- a/app/tests/TestCase/Model/Table/MatchgridsTableTest.php +++ b/app/tests/TestCase/Model/Table/MatchgridsTableTest.php @@ -315,7 +315,7 @@ public function testValidationReferenceidMethod() { * @return void */ public function testValidationReferenceidStart() { - $this->assertFieldRangeUnbounded('referenceid_start', 1); // TODO fix in MatchgridsTable null -> PHP_INT_MAX + $this->assertFieldRangeUnbounded('referenceid_start', 1); $this->assertFieldAllowEmpty('referenceid_start'); } @@ -326,7 +326,7 @@ public function testValidationReferenceidStart() { */ public function testValidationReferenceidPrefix() { $this->assertFieldMaxLength('referenceid_prefix', 32); - $this->assertFieldAllowEmpty('referenceid_prefix'); // TODO fix in table class + $this->assertFieldAllowEmpty('referenceid_prefix'); }