From f971c18f96ac8caa978fb6404edea980b9ab286a Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Fri, 20 Mar 2015 14:35:33 +0000 Subject: [PATCH] Issue #2449147 by Island Usurper: Backwards logic in a comment in a test --- core/modules/system/src/Tests/Database/SchemaTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/src/Tests/Database/SchemaTest.php b/core/modules/system/src/Tests/Database/SchemaTest.php index c3d6ae06e9f..6b96e3dcc8d 100644 --- a/core/modules/system/src/Tests/Database/SchemaTest.php +++ b/core/modules/system/src/Tests/Database/SchemaTest.php @@ -365,8 +365,8 @@ class SchemaTest extends KernelTestBase { // Test numeric types. foreach (array(1, 5, 10, 40, 65) as $precision) { foreach (array(0, 2, 10, 30) as $scale) { + // Skip combinations where precision is smaller than scale. if ($precision <= $scale) { - // Precision must be smaller then scale. continue; }