chore: sync

This commit is contained in:
2026-02-09 00:05:29 +01:00
parent 0301716890
commit 6bfa3d4dda
23 changed files with 622 additions and 18 deletions

View File

@@ -15,7 +15,7 @@ final class AutoCostCalculatorTest extends TestCase
'capacity_add' => 3,
],
];
$configLoader = new ConfigLoader($config);
$configLoader = ConfigLoader::fromArray($config);
$calculator = new AutoCostCalculator($configLoader);
$blueprint = [
@@ -54,4 +54,4 @@ final class AutoCostCalculatorTest extends TestCase
$this->assertEquals(100, $result['cost']);
$this->assertEquals(60, $result['build_time']);
}
}
}