Refactor SetSelected

This commit is contained in:
Thomas Peterson 2025-06-05 15:02:58 +02:00
parent f2c7997f19
commit bb8424cc60
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -41,7 +41,7 @@ class CalcTest extends TestCase
public function testPrice(): void
{
$this->engine->calc();
print_r($this->engine->getDebugCalcFormel());
file_put_contents("/tmp/f1.txt", print_r($this->engine->getDebugCalcFormel(),true ));
$this->assertSame(44.07, $this->engine->getPrice());
}