Removed duplicated testcase on issue #27

This commit is contained in:
Walter Dal Mut
2015-06-22 07:31:03 +02:00
parent 00ec440499
commit 662f4c978a
-20
View File
@@ -455,26 +455,6 @@ class ClientTest extends \PHPUnit_Framework_TestCase
$object->mark("udp.test", ["mark" => "element"]);
}
/**
* @group udp
*/
public function testReplicateIssue27()
{
$options = new \InfluxDB\Options();
// Configure options
$options->setHost('172.16.1.182');
$options->setPort(4444);
$options->setDatabase('...');
$options->setUsername('root');
$options->setPassword('root');
$udpAdapter = new \InfluxDB\Adapter\UdpAdapter($options);
$client = new \InfluxDB\Client($udpAdapter);
$client->mark("udp.test", ["mark" => "element"]);
}
/**
* @group udp
*/