aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/FeedBuilderTest.php
diff options
context:
space:
mode:
authorArthur <arthur@hoa.ro>2016-06-03 18:30:19 +0200
committerArthur <arthur@hoa.ro>2016-06-03 18:30:19 +0200
commit92a381f51737de1e4a03c482fe7c43da311ad556 (patch)
tree888228f4e9a4bca68bc86e78ed3cd6f4c3339e14 /tests/FeedBuilderTest.php
parente8f6024400307cbf2b8293073d7ba8cba5caae7e (diff)
parentb1eb5d1d31e3ea256501c08a3ed9aa7183b27466 (diff)
downloadShaarli-92a381f51737de1e4a03c482fe7c43da311ad556.tar.gz
Shaarli-92a381f51737de1e4a03c482fe7c43da311ad556.tar.zst
Shaarli-92a381f51737de1e4a03c482fe7c43da311ad556.zip
Merge pull request #583 from ArthurHoaro/enhance/tag-case
Fixes #497: ignore case difference between tags
Diffstat (limited to 'tests/FeedBuilderTest.php')
-rw-r--r--tests/FeedBuilderTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/FeedBuilderTest.php b/tests/FeedBuilderTest.php
index 069b1581..647b2db2 100644
--- a/tests/FeedBuilderTest.php
+++ b/tests/FeedBuilderTest.php
@@ -93,7 +93,7 @@ class FeedBuilderTest extends PHPUnit_Framework_TestCase
93 $this->assertContains('Permalink', $link['description']); 93 $this->assertContains('Permalink', $link['description']);
94 $this->assertContains('http://host.tld/?WDWyig', $link['description']); 94 $this->assertContains('http://host.tld/?WDWyig', $link['description']);
95 $this->assertEquals(1, count($link['taglist'])); 95 $this->assertEquals(1, count($link['taglist']));
96 $this->assertEquals('stuff', $link['taglist'][0]); 96 $this->assertEquals('sTuff', $link['taglist'][0]);
97 97
98 // Test URL with external link. 98 // Test URL with external link.
99 $this->assertEquals('https://static.fsf.org/nosvn/faif-2.0.pdf', $data['links']['20150310_114633']['url']); 99 $this->assertEquals('https://static.fsf.org/nosvn/faif-2.0.pdf', $data['links']['20150310_114633']['url']);