]> git.mjollnir.org Git - moodle.git/commitdiff
simpletestlib: Fix typo in error message
authortjhunt <tjhunt>
Mon, 20 Apr 2009 06:47:01 +0000 (06:47 +0000)
committertjhunt <tjhunt>
Mon, 20 Apr 2009 06:47:01 +0000 (06:47 +0000)
lib/simpletestlib.php

index 2eb6b754acb7ab445556063518b16830f6dac92f..47bb9bb758d0ed1d4be90503b9c022f522ebb016 100644 (file)
@@ -286,7 +286,7 @@ class UnitTestCaseUsingDatabase extends UnitTestCase {
     protected function create_test_table($tablename, $installxmlfile) {
         global $CFG;
         if (isset($this->tables[$tablename])) {
-            debugging('You are attempting to create test table ' . $tablename . 'again. It already exists. Please review your code immediately.', DEBUG_DEVELOPER);
+            debugging('You are attempting to create test table ' . $tablename . ' again. It already exists. Please review your code immediately.', DEBUG_DEVELOPER);
             return;
         }
         $dbman = $this->testdb->get_manager();