diff --git a/.github/workflows/testcore11.yml b/.github/workflows/testcore11.yml index 5f83c578..7eb1e1e2 100644 --- a/.github/workflows/testcore11.yml +++ b/.github/workflows/testcore11.yml @@ -56,7 +56,7 @@ jobs: run: "Build/Scripts/runTests.sh -t 11 -p ${{ matrix.php-version }} -s lintPhp" - name: "Validate CGL" - run: "Build/Scripts/runTests.sh -t 11 -p ${{ matrix.php-version }} -s cgl" + run: "Build/Scripts/runTests.sh -t 11 -p ${{ matrix.php-version }} -s cgl -n" - name: "Ensure tests methods do not start with \"test\"" run: "Build/Scripts/runTests.sh -t 11 -p ${{ matrix.php-version }} -s checkTestMethodsPrefix" diff --git a/.github/workflows/testcore12.yml b/.github/workflows/testcore12.yml index c4050478..522f2bd1 100644 --- a/.github/workflows/testcore12.yml +++ b/.github/workflows/testcore12.yml @@ -53,7 +53,7 @@ jobs: run: "Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s lintPhp" - name: "Validate CGL" - run: "Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s cgl" + run: "Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s cgl -n" - name: "Ensure tests methods do not start with \"test\"" run: "Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s checkTestMethodsPrefix" diff --git a/Tests/Functional/Regression/GlossaryRegressionTest.php b/Tests/Functional/Regression/GlossaryRegressionTest.php index 1b64d45f..14ba6209 100644 --- a/Tests/Functional/Regression/GlossaryRegressionTest.php +++ b/Tests/Functional/Regression/GlossaryRegressionTest.php @@ -93,7 +93,7 @@ public function glossaryIsRespectedOnLocalization(): void $dataHandler->start([], $commandMap); $dataHandler->process_cmdmap(); - self::assertEmpty($dataHandler->errorLog); + static::assertEmpty($dataHandler->errorLog); self::assertCSVDataSet(__DIR__ . '/Fixtures/Results/translateWithGlossary.csv'); } }