summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Uckelman <uckelman@nomic.net>2012-02-27 01:52:14 +0100
committerJoel Uckelman <uckelman@nomic.net>2012-02-27 01:52:14 +0100
commit04c287943c2924de78e6166597f628ccb37e16c3 (patch)
tree0f4d24fa23dfa63f196d35c98cd65e75bd235993
parent4988452740e4d8ae347570774f8aaece4372307d (diff)
Typos.
-rw-r--r--test/build_post_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/build_post_test.php b/test/build_post_test.php
index 72e28a7..a707399 100644
--- a/test/build_post_test.php
+++ b/test/build_post_test.php
@@ -6,7 +6,7 @@ require_once(__DIR__ . '/../src/build_post.php');
class build_post_test extends PHPUnit_Framework_TestCase {
- /* @dataProvider buildPostSubjectProvider */
+ /** @dataProvider buildPostSubjectProvider */
public function testBuildPostSubject($ltag, $ftag, $subject, $expected) {
$this->assertEquals(
build_post_subject($listtag, $forumtag, $subject),
@@ -14,7 +14,7 @@ class build_post_test extends PHPUnit_Framework_TestCase {
);
}
- public function builtPostSubjectProvider() {
+ public function buildPostSubjectProvider() {
return array(
array('[l]', '[f]', '', '(no subject)'),
array('[l]', '[f]', 'Re:', '(no subject)'),