summaryrefslogtreecommitdiffstats
path: root/test/ReaderTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/ReaderTest.php')
-rw-r--r--test/ReaderTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ReaderTest.php b/test/ReaderTest.php
index 8353593..b72ddbd 100644
--- a/test/ReaderTest.php
+++ b/test/ReaderTest.php
@@ -1,6 +1,6 @@
<?php
-namespace Bakame\Csv;
+namespace League\Csv;
use PHPUnit_Framework_TestCase;
use SplTempFileObject;
@@ -165,6 +165,6 @@ EOF;
public function testGetWriter2()
{
$csv = (new Reader(__DIR__.'/foo.csv'))->getWriter('a+');
- $this->assertInstanceOf('\Bakame\Csv\Writer', $csv);
+ $this->assertInstanceOf('\League\Csv\Writer', $csv);
}
}