We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -229,13 +229,13 @@ |
||
229 | 229 | $planet->increaseBuilding(PLANET_HANGAR, 4); |
230 | 230 | $this->assertTrue($planet->hasBuilding(PLANET_HANGAR)); |
231 | 231 | $this->assertSame(4, $planet->getBuilding(PLANET_HANGAR)); |
232 | - $this->assertSame(4/3, $planet->getLevel()); |
|
232 | + $this->assertSame(4 / 3, $planet->getLevel()); |
|
233 | 233 | |
234 | 234 | // Destroy some hangars |
235 | 235 | $planet->destroyBuilding(PLANET_HANGAR, 2); |
236 | 236 | $this->assertTrue($planet->hasBuilding(PLANET_HANGAR)); |
237 | 237 | $this->assertSame(2, $planet->getBuilding(PLANET_HANGAR)); |
238 | - $this->assertSame(2/3, $planet->getLevel()); |
|
238 | + $this->assertSame(2 / 3, $planet->getLevel()); |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | public function test_defenses() : void { |