diff options
author | Joel Uckelman <uckelman@nomic.net> | 2012-02-27 03:07:39 +0100 |
---|---|---|
committer | Joel Uckelman <uckelman@nomic.net> | 2012-02-27 03:07:39 +0100 |
commit | 94ee47fd7f300085b4dd340329c18c87b7d14b98 (patch) | |
tree | 6b3788b40508fdbd1fa780140e127ca25b08b059 | |
parent | a6c7607d5882fb0de7d23791b11c69f2fca04aa4 (diff) |
Cosmetic.
-rw-r--r-- | test/build_post_test.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/build_post_test.php b/test/build_post_test.php index 87cc6e4..283311c 100644 --- a/test/build_post_test.php +++ b/test/build_post_test.php @@ -4,15 +4,15 @@ require_once(__DIR__ . '/../src/build_post.php'); class build_post_test extends PHPUnit_Framework_TestCase { - /** @dataProvider buildPostSubjectProvider */ - public function testBuildPostSubject($ltag, $ftag, $subject, $expected) { + /** @dataProvider build_post_subject_data */ + public function test_build_post_subject($ltag, $ftag, $subject, $expected) { $this->assertEquals( $expected, build_post_subject($ltag, $ftag, $subject) ); } - public function buildPostSubjectProvider() { + public function build_post_subject_data() { return array( array('[l]', '[f]', '', '(no subject)'), array('[l]', '[f]', 'Re:', '(no subject)'), |