From 451467823d1297abc20cc7d200245e7aec2b5258 Mon Sep 17 00:00:00 2001 From: Damian Mooyman Date: Fri, 20 May 2016 13:18:59 +1200 Subject: [PATCH] BUG Tests don't work in non-root base url. --- tests/BlogTagsCloudWidgetTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/BlogTagsCloudWidgetTest.php b/tests/BlogTagsCloudWidgetTest.php index 43d1a67..d37a2bc 100644 --- a/tests/BlogTagsCloudWidgetTest.php +++ b/tests/BlogTagsCloudWidgetTest.php @@ -35,25 +35,25 @@ class BlogTagsCloudWidgetTest extends SapphireTest { $tag = $tags[0]; $this->assertEquals('Cat', $tag->TagName); - $this->assertEquals('/fourth-blog/tag/cat', $tag->Link); + $this->assertEquals(Controller::join_links(Director::baseURL(), 'fourth-blog/tag/cat'), $tag->Link); $this->assertEquals(2, $tag->TagCount); $this->assertEquals(5, $tag->NormalizedTag); $tag = $tags[1]; $this->assertEquals('Cool', $tag->TagName); - $this->assertEquals('/fourth-blog/tag/cool', $tag->Link); + $this->assertEquals(Controller::join_links(Director::baseURL(), 'fourth-blog/tag/cool'), $tag->Link); $this->assertEquals(3, $tag->TagCount); $this->assertEquals(8, $tag->NormalizedTag); $tag = $tags[2]; $this->assertEquals('Kiwi', $tag->TagName); - $this->assertEquals('/fourth-blog/tag/kiwi', $tag->Link); + $this->assertEquals(Controller::join_links(Director::baseURL(), 'fourth-blog/tag/kiwi'), $tag->Link); $this->assertEquals(1, $tag->TagCount); $this->assertEquals(3, $tag->NormalizedTag); $tag = $tags[3]; $this->assertEquals('Popular', $tag->TagName); - $this->assertEquals('/fourth-blog/tag/popular', $tag->Link); + $this->assertEquals(Controller::join_links(Director::baseURL(), 'fourth-blog/tag/popular'), $tag->Link); $this->assertEquals(4, $tag->TagCount); $this->assertEquals(10, $tag->NormalizedTag); }