summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Uckelman <uckelman@nomic.net>2012-02-26 17:52:09 -0700
committerJoel Uckelman <uckelman@nomic.net>2012-02-26 17:52:09 -0700
commit5294b0916446f3d9d5db941fcccda44315b1d5a4 (patch)
tree0f4d24fa23dfa63f196d35c98cd65e75bd235993
parent4988452740e4d8ae347570774f8aaece4372307d (diff)
Typo.
-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)'),