MDL-32250 fixed case typo
authorPetr Skoda <commits@skodak.org>
Mon, 2 Apr 2012 07:21:14 +0000 (09:21 +0200)
committerPetr Skoda <commits@skodak.org>
Mon, 2 Apr 2012 07:21:14 +0000 (09:21 +0200)
Thanks Dan!

question/engine/simpletest/testunitofwork.php

index 069a66f..68a9986 100644 (file)
@@ -151,7 +151,7 @@ class question_engine_unit_of_work_test extends data_loading_method_test_base {
 
         $newattempts = $this->observer->get_attempts_added();
         $this->assertEqual(1, count($newattempts));
-        $this->asserttrue($this->quba->get_question_attempt($slot) === reset($newattempts));
+        $this->assertTrue($this->quba->get_question_attempt($slot) === reset($newattempts));
         $this->assertIdentical($slot, key($newattempts));
     }