Browse Source

Small fixes in tests

pull/40/head
Paul Rock 6 years ago
parent
commit
2cbd59c2d6
  1. 4
      tests/ConfigTest.php
  2. 1
      tests/Laravel/ServiceProviderTests.php

4
tests/ConfigTest.php

@ -23,7 +23,7 @@ class ConfigTest extends TestCase
$obj = new Config();
$params = $obj->getParameters();
$this->assertCount(5, $params);
$this->assertCount(6, $params);
$this->assertEquals(false, $params['legacy']);
$this->assertEquals(false, $params['ssl']);
$this->assertEquals(10, $params['timeout']);
@ -36,7 +36,7 @@ class ConfigTest extends TestCase
$obj = new Config(['timeout' => 100]);
$params = $obj->getParameters();
$this->assertCount(5, $params);
$this->assertCount(6, $params);
$this->assertEquals(100, $params['timeout']);
}

1
tests/Laravel/ServiceProviderTests.php

@ -15,6 +15,7 @@ class ServiceProviderTests extends TestCase
"readAsIterator",
"parseResponse",
"connect",
"export",
"getSocket",
"w",
"q",

Loading…
Cancel
Save