From 99d4f185fbbe7686f7fb1c9adc25f0e667c947bb Mon Sep 17 00:00:00 2001 From: Adrien Crivelli Date: Sun, 10 Nov 2019 17:05:18 +0100 Subject: [PATCH] Avoid test without assertion --- tests/PhpSpreadsheetTests/Calculation/CalculationTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/PhpSpreadsheetTests/Calculation/CalculationTest.php b/tests/PhpSpreadsheetTests/Calculation/CalculationTest.php index 4cdfe5cb..59b8cd0e 100644 --- a/tests/PhpSpreadsheetTests/Calculation/CalculationTest.php +++ b/tests/PhpSpreadsheetTests/Calculation/CalculationTest.php @@ -280,6 +280,7 @@ class CalculationTest extends TestCase // this used to raise a parser error, we keep it even though we don't // test the output $calculation->parseFormula($formula); + self::assertTrue(true); } public function testBranchPruningFormulaParsingInequalitiesConditionsCase()