diff options
author | ArthurHoaro <arthur@hoa.ro> | 2016-04-14 17:59:37 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2016-05-31 09:09:32 +0200 |
commit | b1eb5d1d31e3ea256501c08a3ed9aa7183b27466 (patch) | |
tree | da39f2c91bf636ff7a9d0890ec70601b2ca92797 /tests/FeedBuilderTest.php | |
parent | 11609d9fd8ba53f049e6c913d8e3affab6cfc9ce (diff) | |
download | Shaarli-b1eb5d1d31e3ea256501c08a3ed9aa7183b27466.tar.gz Shaarli-b1eb5d1d31e3ea256501c08a3ed9aa7183b27466.tar.zst Shaarli-b1eb5d1d31e3ea256501c08a3ed9aa7183b27466.zip |
Fixes #497: ignore case difference between tags
While retrieving all tags, case differences will be ignored.
This affects:
* tag cloud
* tag autocompletion
Diffstat (limited to 'tests/FeedBuilderTest.php')
-rw-r--r-- | tests/FeedBuilderTest.php | 2 |
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']); |