diff --git a/tests/ClientTest.php b/tests/ClientTest.php index 0f77cf5..619cd88 100644 --- a/tests/ClientTest.php +++ b/tests/ClientTest.php @@ -145,10 +145,6 @@ class ClientTest extends TestCase * Build query with where */ - $read = $obj->query('/system/package/print')->read(); - $this->assertCount(13, $read); - $this->assertEquals('advanced-tools', $read[12]['name']); - $read = $obj->query('/system/package/print', ['name'])->read(); $this->assertCount(13, $read); $this->assertEquals('dude', $read[0]['name']); diff --git a/tests/ResponseIteratorTest.php b/tests/ResponseIteratorTest.php index 9ef7b5b..1796b9b 100644 --- a/tests/ResponseIteratorTest.php +++ b/tests/ResponseIteratorTest.php @@ -31,9 +31,6 @@ class ResponseIteratorTest extends TestCase // Read from RAW $this->assertCount(13, $readTrap); $this->assertEquals('advanced-tools', $readTrap[12]['name']); - // Read from parsed - $this->assertCount(13, $readTrap); - $this->assertEquals('advanced-tools', $readTrap[12]['name']); $readTrap = $obj->write('/ip/address/print')->readAsIterator(); $this->assertCount(1, $readTrap);