From c6a0e749458886529b10c2d4aa79c6b38393a5bb Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Fri, 17 Feb 2017 15:00:38 -0500 Subject: [PATCH] FIX: Remove errors when running phantomjs --- test/javascripts/widgets/topic-participant-test.js.es6 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/javascripts/widgets/topic-participant-test.js.es6 b/test/javascripts/widgets/topic-participant-test.js.es6 index fe43652456..078d562457 100644 --- a/test/javascripts/widgets/topic-participant-test.js.es6 +++ b/test/javascripts/widgets/topic-participant-test.js.es6 @@ -8,7 +8,7 @@ widgetTest('one post', { setup() { this.set('args', { username: 'test', - avatar_template: 'stubbed', + avatar_template: '/images/avatar.png', post_count: 1 }); }, @@ -26,10 +26,10 @@ widgetTest('many posts, a primary group with flair', { setup() { this.set('args', { username: 'test', - avatar_template: 'stubbed', + avatar_template: '/images/avatar.png', post_count: 5, primary_group_name: 'devs', - primary_group_flair_url: "http://devs.example.com/img/devs.png", + primary_group_flair_url: "/images/d-logo-sketch-small.png", primary_group_flair_bg_color: "222" }); },