mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
make sure locale is restored correct in tests
This commit is contained in:
parent
169c99cedf
commit
2a7bee0a5c
3 changed files with 5 additions and 5 deletions
|
@ -146,7 +146,7 @@ class MysqlTest extends CakeTestCase {
|
|||
public function testLocalizedFloats() {
|
||||
$this->skipIf(DS === '\\', 'The locale is not supported in Windows and affect the others tests.');
|
||||
|
||||
$restore = setlocale(LC_ALL, null);
|
||||
$restore = setlocale(LC_ALL, 0);
|
||||
setlocale(LC_ALL, 'de_DE');
|
||||
|
||||
$result = $this->Dbo->value(3.141593);
|
||||
|
|
|
@ -344,7 +344,7 @@ class PostgresTest extends CakeTestCase {
|
|||
* @return void
|
||||
*/
|
||||
public function testLocalizedFloats() {
|
||||
$restore = setlocale(LC_ALL, null);
|
||||
$restore = setlocale(LC_ALL, 0);
|
||||
setlocale(LC_ALL, 'de_DE');
|
||||
|
||||
$result = $this->db->value(3.141593, 'float');
|
||||
|
|
|
@ -6253,7 +6253,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
* @return void
|
||||
*/
|
||||
public function testWriteFloatAsGerman() {
|
||||
$restore = setlocale(LC_ALL, null);
|
||||
$restore = setlocale(LC_ALL, 0);
|
||||
setlocale(LC_ALL, 'de_DE');
|
||||
|
||||
$model = new DataTest();
|
||||
|
|
Loading…
Reference in a new issue