diff options
author | Joel Uckelman <uckelman@nomic.net> | 2012-02-27 01:58:31 +0100 |
---|---|---|
committer | Joel Uckelman <uckelman@nomic.net> | 2012-02-27 01:58:31 +0100 |
commit | bd1c62f553ff504a3f2bdd31ef89d67f70cf9ea8 (patch) | |
tree | fde9dbcb8289470113d03244099514f82e36e4d4 /test/build_post_test.php | |
parent | 8db680d701afd397a3c5936accd72e8eb1aab58b (diff) |
Expected and actual were backwards.
Diffstat (limited to 'test/build_post_test.php')
-rw-r--r-- | test/build_post_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/build_post_test.php b/test/build_post_test.php index 7b9cb6f..cf172f6 100644 --- a/test/build_post_test.php +++ b/test/build_post_test.php @@ -9,8 +9,8 @@ class build_post_test extends PHPUnit_Framework_TestCase { /** @dataProvider buildPostSubjectProvider */ public function testBuildPostSubject($ltag, $ftag, $subject, $expected) { $this->assertEquals( - build_post_subject($ltag, $ftag, $subject), - $expected + $expected, + build_post_subject($ltag, $ftag, $subject) ); } |