From 662f4c978aea0eea844c7db96092bf12bcff2b4b Mon Sep 17 00:00:00 2001 From: Walter Dal Mut Date: Sun, 21 Jun 2015 10:56:16 +0200 Subject: [PATCH] Removed duplicated testcase on issue #27 --- tests/ClientTest.php | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/tests/ClientTest.php b/tests/ClientTest.php index e6ca25fd9d..cd682e6172 100644 --- a/tests/ClientTest.php +++ b/tests/ClientTest.php @@ -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 */