Put back CodeStyle checks

It had been deleted by mistake
This commit is contained in:
Adrien Loison 2021-06-07 12:27:05 +02:00
parent 9533accd73
commit 633b8935f5
2 changed files with 4 additions and 2 deletions

View File

@ -5,6 +5,8 @@ language: php
matrix:
include:
- php: 7.2
env: WITH_CS=true
- php: 7.2
env: WITH_PHPUNIT=true
- php: 7.3

View File

@ -306,8 +306,8 @@ class WriterTest extends TestCase
$this->writeToODSFile($dataRows, $fileName);
$this->assertValueWasNotWrittenToSheet($fileName, 1, "1234,5");
$this->assertValueWasWrittenToSheet($fileName, 1, "1234.5");
$this->assertValueWasNotWrittenToSheet($fileName, 1, '1234,5');
$this->assertValueWasWrittenToSheet($fileName, 1, '1234.5');
} finally {
// reset locale
\setlocale(LC_ALL, $previousLocale);