diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-18 18:35:19 +0300 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-18 18:35:19 +0300 |
commit | 3fc9fbeef70aed6bba7822e5b1456969b752cf86 (patch) | |
tree | a82820402af24e4d4255a1088c1e0da1d0d9ca69 /tests | |
parent | 665100b4715cb277a3f308cff149d1f97c0292c7 (diff) | |
download | nextcloud-server-3fc9fbeef70aed6bba7822e5b1456969b752cf86.tar.gz nextcloud-server-3fc9fbeef70aed6bba7822e5b1456969b752cf86.zip |
Expectation should be first parameter
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/util.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/lib/util.php b/tests/lib/util.php index 23fe2903613..ee82982dade 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -16,30 +16,30 @@ class Test_Util extends UnitTestCase { function testFormatDate() { $result = OC_Util::formatDate(1350129205); $expected = 'October 13, 2012, 11:53'; - $this->assertEquals($result, $expected); + $this->assertEquals($expected $result); $result = OC_Util::formatDate(1102831200, true); $expected = 'December 12, 2004'; - $this->assertEquals($result, $expected); + $this->assertEquals($expected, $result); } function testCallRegister() { $result = strlen(OC_Util::callRegister()); - $this->assertEquals($result, 20); + $this->assertEquals(20, $result); } function testSanitizeHTML() { $badString = "<script>alert('Hacked!');</script>"; $result = OC_Util::sanitizeHTML($badString); - $this->assertEquals($result, "<script>alert('Hacked!');</script>"); + $this->assertEquals("<script>alert('Hacked!');</script>", $result); $goodString = "This is an harmless string."; $result = OC_Util::sanitizeHTML($goodString); - $this->assertEquals($result, "This is an harmless string."); + $this->assertEquals("This is an harmless string.", $result); } function testGenerate_random_bytes() { $result = strlen(OC_Util::generate_random_bytes(59)); - $this->assertEquals($result, 59); + $this->assertEquals(59, $result); } }
\ No newline at end of file |