Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0bb48cc
)
MDL-32250 fixed case typo
author
Petr Skoda
<commits@skodak.org>
Mon, 2 Apr 2012 07:21:14 +0000
(09:21 +0200)
committer
Petr Skoda
<commits@skodak.org>
Mon, 2 Apr 2012 07:21:14 +0000
(09:21 +0200)
Thanks Dan!
question/engine/simpletest/testunitofwork.php
patch
|
blob
|
blame
|
history
diff --git
a/question/engine/simpletest/testunitofwork.php
b/question/engine/simpletest/testunitofwork.php
index
069a66f
..
68a9986
100644
(file)
--- a/
question/engine/simpletest/testunitofwork.php
+++ b/
question/engine/simpletest/testunitofwork.php
@@
-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->assert
t
rue($this->quba->get_question_attempt($slot) === reset($newattempts));
+ $this->assert
T
rue($this->quba->get_question_attempt($slot) === reset($newattempts));
$this->assertIdentical($slot, key($newattempts));
}