diff --git a/e107 b/e107 index 78213c4a3..2b24346a8 160000 --- a/e107 +++ b/e107 @@ -1 +1 @@ -Subproject commit 78213c4a31467a0dde4da35413927e95f8ae494f +Subproject commit 2b24346a8aa4bd3768095a50c7ad732a348cb6e6 diff --git a/tests/unit/e_dateTest.php b/tests/unit/e_dateTest.php index 837bd1d1a..d91236888 100644 --- a/tests/unit/e_dateTest.php +++ b/tests/unit/e_dateTest.php @@ -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';