Changed namespace to \\InfluxDB

This commit is contained in:
Stephen Hoogendijk
2015-06-23 09:19:24 +02:00
parent 0091131d6b
commit 54fbd31ce2
20 changed files with 74 additions and 74 deletions

View File

@@ -1,11 +1,11 @@
<?php
namespace Leaseweb\InfluxDB\Test;
namespace InfluxDB\Test;
use Leaseweb\InfluxDB\Client;
use Leaseweb\InfluxDB\Database;
use Leaseweb\InfluxDB\Point;
use InfluxDB\Client;
use InfluxDB\Database;
use InfluxDB\Point;
class DatabaseTest extends \PHPUnit_Framework_TestCase
{
@@ -20,7 +20,7 @@ class DatabaseTest extends \PHPUnit_Framework_TestCase
public function setUp()
{
$this->mockClient = $this->getMockBuilder('\Leaseweb\InfluxDB\Client')
$this->mockClient = $this->getMockBuilder('\InfluxDB\Client')
->disableOriginalConstructor()
->getMock();