diff options
Diffstat (limited to 'test/FactoryTest.php')
-rw-r--r-- | test/FactoryTest.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/FactoryTest.php b/test/FactoryTest.php index e35b402..377b1b9 100644 --- a/test/FactoryTest.php +++ b/test/FactoryTest.php @@ -2,7 +2,6 @@ namespace League\Csv\Test; -use DateTime; use League\Csv\Reader; use SplFileInfo; use SplFileObject; @@ -42,14 +41,6 @@ class FactoryTest extends AbstractTestCase Reader::createFromPath(new SplTempFileObject()); } - /** - * @expectedException InvalidArgumentException - */ - public function testCreateFromPathWithUnStringableObject() - { - Reader::createFromPath(new DateTime()); - } - public function testCreateFromString() { $expected = 'john,doe,john.doe@example.com'.PHP_EOL |