mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Apply fixes from StyleCI (#12117)
* Apply fixes from StyleCI * Disable style check
This commit is contained in:
@@ -32,8 +32,7 @@ class RrdDefinitionTest extends TestCase
|
||||
{
|
||||
public function testEmpty()
|
||||
{
|
||||
|
||||
$this->assertEmpty((string)new RrdDefinition());
|
||||
$this->assertEmpty((string) new RrdDefinition());
|
||||
}
|
||||
|
||||
public function testWrongType()
|
||||
@@ -52,7 +51,7 @@ class RrdDefinitionTest extends TestCase
|
||||
$expected = 'DS:bad_name-is_too_lon:GAUGE:600:0:100 ';
|
||||
$def = RrdDefinition::make()->addDataset('b a%d$_n:a^me-is_too_lon%g.', 'GAUGE', 0, 100, 600);
|
||||
|
||||
$this->assertEquals($expected, (string)$def);
|
||||
$this->assertEquals($expected, (string) $def);
|
||||
}
|
||||
|
||||
public function testCreation()
|
||||
|
Reference in New Issue
Block a user