From b0cd86786b47b5096ca930c9878e048115f6ee53 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Fri, 29 Sep 2006 17:29:08 +0000 Subject: [PATCH] Change one test a bit... --- admin/xmldb/actions/test/test.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/xmldb/actions/test/test.class.php b/admin/xmldb/actions/test/test.class.php index 17cecccff3c..26e64b45ff4 100644 --- a/admin/xmldb/actions/test/test.class.php +++ b/admin/xmldb/actions/test/test.class.php @@ -265,7 +265,7 @@ class test extends XMLDBAction { /// Get SQL code and execute it $test = new stdClass; $field = new XMLDBField('grade'); - $field->setAttributes(XMLDB_TYPE_NUMBER, '10,2', XMLDB_UNSIGNED, null, null, null, null, null); + $field->setAttributes(XMLDB_TYPE_NUMBER, '20,10', XMLDB_UNSIGNED, null, null, null, null, null); $test->sql = $table->getAlterFieldSQL($CFG->dbtype, $CFG->prefix, $field, true); $test->status = change_field_type($table, $field, false, false);