diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-10-18 23:24:28 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-10-18 23:24:28 +0200 |
commit | 9712a785594f57b210d7b399c7ffd8904a8d1c18 (patch) | |
tree | 4e25f6dbf0a71dd5c7730aed4f8383b39eeaa83e /tests/lib | |
parent | 77cef5f5142d340117add03fd95e1430a3868eb7 (diff) | |
parent | 59c2414439f3824bd35504077f64a0221fefeb05 (diff) | |
download | nextcloud-server-9712a785594f57b210d7b399c7ffd8904a8d1c18.tar.gz nextcloud-server-9712a785594f57b210d7b399c7ffd8904a8d1c18.zip |
merge master into filesystem
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/geo.php | 4 | ||||
-rw-r--r-- | tests/lib/util.php | 14 |
2 files changed, 9 insertions, 9 deletions
diff --git a/tests/lib/geo.php b/tests/lib/geo.php index 2b3599ab9b9..cae3d550b33 100644 --- a/tests/lib/geo.php +++ b/tests/lib/geo.php @@ -10,10 +10,10 @@ class Test_Geo extends UnitTestCase { function testTimezone() { $result = OC_Geo::timezone(3,3); $expected = 'Africa/Porto-Novo'; - $this->assertEquals($result, $expected); + $this->assertEquals($expected, $result); $result = OC_Geo::timezone(-3,-3333); $expected = 'Pacific/Enderbury'; - $this->assertEquals($result, $expected); + $this->assertEquals($expected, $result); } }
\ No newline at end of file diff --git a/tests/lib/util.php b/tests/lib/util.php index 23fe2903613..a8e5b810265 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -15,31 +15,31 @@ class Test_Util extends UnitTestCase { function testFormatDate() { $result = OC_Util::formatDate(1350129205); - $expected = 'October 13, 2012, 11:53'; - $this->assertEquals($result, $expected); + $expected = 'October 13, 2012 11:53'; + $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 |