diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-10-18 22:22:41 +0300 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-10-18 22:22:41 +0300 |
commit | a707fd639d26c6c8f024bb262fb06395a9a19828 (patch) | |
tree | 1e8673c5dc3c41a66e347152130d9e087ae9fc53 /tests | |
parent | e417ad6b1616e917ac2806b90a37837f40403a0f (diff) | |
download | nextcloud-server-a707fd639d26c6c8f024bb262fb06395a9a19828.tar.gz nextcloud-server-a707fd639d26c6c8f024bb262fb06395a9a19828.zip |
Fixing expectation - comma was stupid anyhow
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 ee82982dade..4012ad857aa 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -15,7 +15,7 @@ class Test_Util extends UnitTestCase { function testFormatDate() { $result = OC_Util::formatDate(1350129205); - $expected = 'October 13, 2012, 11:53'; + $expected = 'October 13, 2012 11:53'; $this->assertEquals($expected $result); $result = OC_Util::formatDate(1102831200, true); |