aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2015-12-08 09:35:27 +0100
committerJeremy Benoist <j0k3r@users.noreply.github.com>2015-12-08 09:35:27 +0100
commitda2240f9d409a8301a1d469823a265780e6f1b7b (patch)
tree23c7c5cee6aefbbf8ec058ac99f4729c7be4ac3e /src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php
parenta7f1921f7db312b5def3839393357f443dcbb52c (diff)
parent347fa6beb0bd3fafd5f722c8ce2e2b3915e4e82e (diff)
downloadwallabag-da2240f9d409a8301a1d469823a265780e6f1b7b.tar.gz
wallabag-da2240f9d409a8301a1d469823a265780e6f1b7b.tar.zst
wallabag-da2240f9d409a8301a1d469823a265780e6f1b7b.zip
Merge pull request #1529 from wallabag/v2-taggingrule-tablename
changed table name for tagging rule
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php')
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php
index 739b2dec..aaa26499 100644
--- a/src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/Controller/ExportControllerTest.php
@@ -150,7 +150,7 @@ class ExportControllerTest extends WallabagCoreTestCase
150 150
151 $this->assertGreaterThan(1, $csv); 151 $this->assertGreaterThan(1, $csv);
152 // +1 for title line 152 // +1 for title line
153 $this->assertEquals(count($contentInDB)+1, count($csv)); 153 $this->assertEquals(count($contentInDB) + 1, count($csv));
154 $this->assertEquals('Title;URL;Content;Tags;"MIME Type";Language', $csv[0]); 154 $this->assertEquals('Title;URL;Content;Tags;"MIME Type";Language', $csv[0]);
155 } 155 }
156 156