Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-10-18 23:22:41 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2012-10-18 23:22:41 +0400
commita707fd639d26c6c8f024bb262fb06395a9a19828 (patch)
tree1e8673c5dc3c41a66e347152130d9e087ae9fc53 /tests
parente417ad6b1616e917ac2806b90a37837f40403a0f (diff)
Fixing expectation - comma was stupid anyhow
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/util.php2
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);