Issue #2449147 by Island Usurper: Backwards logic in a comment in a test

8.0.x
Alex Pott 2015-03-20 14:35:33 +00:00
parent cc54a481db
commit f971c18f96
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}