1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-05 05:02:44 +02:00

C locale applied to all of e_dateTest

This commit is contained in:
Deltik 2018-06-09 22:34:49 -05:00
parent f8d74ce2e5
commit e6a098cc33
No known key found for this signature in database
GPG Key ID: 1167C5F9C9897637
2 changed files with 4 additions and 4 deletions

2
e107

@ -1 +1 @@
Subproject commit 78213c4a31467a0dde4da35413927e95f8ae494f
Subproject commit 2b24346a8aa4bd3768095a50c7ad732a348cb6e6

View File

@ -16,6 +16,9 @@
protected function _before()
{
// Expected values made using the C locale
setlocale(LC_TIME, 'C');
try
{
$this->dateObj = $this->make('e_date');
@ -208,9 +211,6 @@
public function testConvert_date()
{
// Expected values made using the C locale
setlocale(LC_TIME, 'C');
// will probably fail on windows
$actual = $this->dateObj->convert_date(mktime(12, 45, 03, 2, 5, 2018), 'long');
$expected = 'Monday 05 February 2018 - 12:45:03';