From e5845c9a5b902bf796092f62aa1efae9432c489d Mon Sep 17 00:00:00 2001 From: Thomas Peterson Date: Thu, 5 Jun 2025 17:16:19 +0200 Subject: [PATCH] Faster --- tests/Customer/Z/CalcTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Customer/Z/CalcTest.php b/tests/Customer/Z/CalcTest.php index 0682a11..df59020 100644 --- a/tests/Customer/Z/CalcTest.php +++ b/tests/Customer/Z/CalcTest.php @@ -39,7 +39,7 @@ class CalcTest extends TestCase public function testPrice(): void { $this->engine->calc(); - file_put_contents("/tmp/f1.txt", print_r($this->engine->getDebugCalcFormel(),true )); + file_put_contents("/tmp/f1.txt", print_r($this->engine->getVariables(), true).print_r($this->engine->getDebugCalcVariables(), true).print_r($this->engine->getDebugCalcFormel(), true)); self::assertSame(131.86, $this->engine->getPrice()); }