summaryrefslogtreecommitdiffstats
path: root/test/Plugin/SkipNullValuesFormatterTest.php
diff options
context:
space:
mode:
authorignace nyamagana butera <nyamsprod@gmail.com>2015-11-23 13:28:43 +0100
committerignace nyamagana butera <nyamsprod@gmail.com>2015-11-23 13:28:43 +0100
commit825481f581dccb97bf57f08cb93816a26eed3669 (patch)
treecd319df6af811389b599f6a126dd93e1491c9c93 /test/Plugin/SkipNullValuesFormatterTest.php
parent991e3b26fef334c2a21befb00a40f4c7e8fabf8b (diff)
downloadcsv-825481f581dccb97bf57f08cb93816a26eed3669.zip
csv-825481f581dccb97bf57f08cb93816a26eed3669.tar.gz
csv-825481f581dccb97bf57f08cb93816a26eed3669.tar.bz2
Remove deprecated newline parameters from CreateFromString
Diffstat (limited to 'test/Plugin/SkipNullValuesFormatterTest.php')
-rw-r--r--test/Plugin/SkipNullValuesFormatterTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Plugin/SkipNullValuesFormatterTest.php b/test/Plugin/SkipNullValuesFormatterTest.php
index 8f203da..3e0787e 100644
--- a/test/Plugin/SkipNullValuesFormatterTest.php
+++ b/test/Plugin/SkipNullValuesFormatterTest.php
@@ -23,7 +23,7 @@ class SkipNullValuesFormatterTest extends AbstractTestCase
public function tearDown()
{
- $csv = new SplFileObject(dirname(__DIR__).'/foo.csv', 'w');
+ $csv = new SplFileObject(dirname(__DIR__).'/data/foo.csv', 'w');
$csv->setCsvControl();
$csv->fputcsv(['john', 'doe', 'john.doe@example.com'], ',', '"');
$this->csv = null;