Fixed formatting issues as per comment

This commit is contained in:
Katrina Knight
2021-09-05 22:06:42 +01:00
committed by Basilius Sauter
parent 83c3d697c9
commit 5e6f132131
+4 -3
View File
@@ -345,12 +345,13 @@ class GameTest extends CoreModelTestCase
], $viewpointToArray($v3));
}
public function testCorrectVersioning(){
public function testCorrectVersioning()
{
try {
$version=new version(Game::getVersion());
$version = new version(Game::getVersion());
$this->assertTrue(true);
} catch(\RuntimeException $e) {
$this->fail(sprintf("Version failed SemVer check with error: %s",$e->getMessage()));
$this->fail(sprintf("Version failed SemVer check with error: %s", $e->getMessage()));
}
}
}