summaryrefslogtreecommitdiffstats
path: root/test/Plugin/ColumnConsistencyValidatorTest.php
diff options
context:
space:
mode:
authorignace nyamagana butera <nyamsprod@gmail.com>2015-11-24 12:00:26 +0100
committerignace nyamagana butera <nyamsprod@gmail.com>2015-11-24 12:00:26 +0100
commitbfcc2d633a0160853684ecd0c9c82b6e3b3d32ef (patch)
tree0782a13735eac74199f11b63493f6e1808e3b2a0 /test/Plugin/ColumnConsistencyValidatorTest.php
parent69bafa6ff924fbf9effe4275d6eb16be81a853ef (diff)
parentc3a2ae5ccdc2ea05de734716f892d9b7f5f28774 (diff)
downloadcsv-bfcc2d633a0160853684ecd0c9c82b6e3b3d32ef.zip
csv-bfcc2d633a0160853684ecd0c9c82b6e3b3d32ef.tar.gz
csv-bfcc2d633a0160853684ecd0c9c82b6e3b3d32ef.tar.bz2
Merge pull request #137 from nyamsprod/features/improve-reader
Reader class complete rewrite
Diffstat (limited to 'test/Plugin/ColumnConsistencyValidatorTest.php')
-rw-r--r--test/Plugin/ColumnConsistencyValidatorTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Plugin/ColumnConsistencyValidatorTest.php b/test/Plugin/ColumnConsistencyValidatorTest.php
index 43f023a..e49e770 100644
--- a/test/Plugin/ColumnConsistencyValidatorTest.php
+++ b/test/Plugin/ColumnConsistencyValidatorTest.php
@@ -22,7 +22,7 @@ class ColumnConsistencyValidatorTest 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;