diff options
Diffstat (limited to 'test/ReaderTest.php')
-rw-r--r-- | test/ReaderTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ReaderTest.php b/test/ReaderTest.php index 9cea8ca..5257a6b 100644 --- a/test/ReaderTest.php +++ b/test/ReaderTest.php @@ -200,7 +200,7 @@ class ReaderTest extends PHPUnit_Framework_TestCase /** * @expectedException \InvalidArgumentException - * @expectedExceptionMessage the column index must be a positive integer or 0 + * @expectedExceptionMessage the row index must be a positive integer or 0 */ public function testFetchAssocWithInvalidKey() { @@ -222,9 +222,9 @@ class ReaderTest extends PHPUnit_Framework_TestCase /** * @expectedException \InvalidArgumentException - * @expectedExceptionMessage Use a flat non empty array with unique string values + * @expectedExceptionMessage the specified row does not exist */ - public function testFetchAssocWithEmptyArr() + public function testFetchAssocWithInvalidOffset() { $arr = [ ['A', 'B', 'C'], |