diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-10-18 23:27:49 +0300 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-10-18 23:27:49 +0300 |
commit | 59c2414439f3824bd35504077f64a0221fefeb05 (patch) | |
tree | 2c8dd5c5b4725963a657bfce76f23f79b71d9b2c /tests | |
parent | a707fd639d26c6c8f024bb262fb06395a9a19828 (diff) | |
download | nextcloud-server-59c2414439f3824bd35504077f64a0221fefeb05.tar.gz nextcloud-server-59c2414439f3824bd35504077f64a0221fefeb05.zip |
Fixing typo
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/util.php b/tests/lib/util.php index 4012ad857aa..a8e5b810265 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -16,7 +16,7 @@ class Test_Util extends UnitTestCase { function testFormatDate() { $result = OC_Util::formatDate(1350129205); $expected = 'October 13, 2012 11:53'; - $this->assertEquals($expected $result); + $this->assertEquals($expected, $result); $result = OC_Util::formatDate(1102831200, true); $expected = 'December 12, 2004'; |