summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/CsvTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CsvTest.php b/test/CsvTest.php
index 68f0ba8..5cd2837 100644
--- a/test/CsvTest.php
+++ b/test/CsvTest.php
@@ -54,7 +54,7 @@ class CsvTest extends PHPUnit_Framework_TestCase
public function testJsonSerialize()
{
- $this->assertContains(['john', 'doe', 'john.doe@example.com'], json_decode(json_encode($this->csv), true));
+ $this->assertSame($this->expected, json_decode(json_encode($this->csv), true));
}
/**