From aeb0ea1f25b67e2c5f0925cb638ae5913c6af555 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Wed, 30 Jul 2014 12:08:07 -0400 Subject: [PATCH] FIX: Broken test --- test/javascripts/templates/site_map_test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/javascripts/templates/site_map_test.js b/test/javascripts/templates/site_map_test.js index 8ff02b0b183..a4025ec39aa 100644 --- a/test/javascripts/templates/site_map_test.js +++ b/test/javascripts/templates/site_map_test.js @@ -76,7 +76,7 @@ test("location links part is rendered correctly", function() { var $latestTopicsLink = $locationLinks.find(".latest-topics-link"); ok(exists($latestTopicsLink), "the latest topics link is present"); - equal($latestTopicsLink.attr("href"), "/", "the latest topics link points to a correct URL"); + equal($latestTopicsLink.attr("href"), "/latest", "the latest topics link points to a correct URL"); equal($latestTopicsLink.attr("title"), "filters.latest.help", "the latest topics link has correct title attr"); equal($latestTopicsLink.text(), "filters.latest.title", "the latest topics link has correct text");