From e2ccede78a222cb651a69ba6fa02af3a8eb5b4f7 Mon Sep 17 00:00:00 2001 From: Tom Zeller Date: Fri, 8 Mar 2019 12:28:17 -0600 Subject: [PATCH] Remove TODOs (CO-1716) --- app/tests/TestCase/Model/Table/MatchgridsTableTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'); }