Skip to content
Snippets Groups Projects
Commit 61476263 authored by Tibo's avatar Tibo
Browse files

Fix tests

parent ca19879d
No related branches found
No related tags found
No related merge requests found
Pipeline #3143 passed
......@@ -75,8 +75,8 @@ class ExampleTest extends TestCase
$sensor = new Disks(new Server());
$disks = $sensor->parse($string);
$this->assertEquals(2, count($disks));
$this->assertEquals("/dev/sda1", $disks[1]->filesystem);
$this->assertEquals(1128926648, $disks[1]->blocks);
$this->assertEquals("/dev/sda1", $disks[0]->filesystem);
$this->assertEquals(1128926648, $disks[0]->blocks);
}
public function testNetstatListening()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment