From 40da065930530828fa93d9aa255b56c162ad1e8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Hanol?= Date: Mon, 26 Jan 2015 23:49:15 +0100 Subject: [PATCH] fix the build (:fired:) --- test/javascripts/integration/topic-discovery-test.js.es6 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/javascripts/integration/topic-discovery-test.js.es6 b/test/javascripts/integration/topic-discovery-test.js.es6 index fcd4a090d..ea4dbac42 100644 --- a/test/javascripts/integration/topic-discovery-test.js.es6 +++ b/test/javascripts/integration/topic-discovery-test.js.es6 @@ -11,12 +11,12 @@ test("Visit Discovery Pages", function() { andThen(function() { ok(exists(".topic-list"), "The list of topics was rendered"); ok(exists('.topic-list .topic-list-item'), "has topics"); - ok($('body.category-1').length, "has a custom css class for the category id on the body"); + ok($('body.category-bug').length, "has a custom css class for the category id on the body"); }); visit("/categories"); andThen(function() { - ok($('body.category-1').length === 0, "removes the custom category class"); + ok($('body.category-bug').length === 0, "removes the custom category class"); ok(exists('.category'), "has a list of categories"); ok($('body.categories-list').length, "has a custom class to indicate categories");