From 9af48d85aac9c106cac47a749a116f55b7345931 Mon Sep 17 00:00:00 2001 From: Maxwell Salzberg Date: Mon, 14 May 2012 17:38:03 -0700 Subject: [PATCH] be less strict in asserting post template as not all small frames are .post(which seems weird) --- features/step_definitions/trumpeter_steps.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/step_definitions/trumpeter_steps.rb b/features/step_definitions/trumpeter_steps.rb index 4a6e783e4..6aedd13a8 100644 --- a/features/step_definitions/trumpeter_steps.rb +++ b/features/step_definitions/trumpeter_steps.rb @@ -38,7 +38,7 @@ def finalize_frame end def assert_post_renders_with(mood) - find(".post.#{mood.downcase}").should be_present + find(".#{mood.downcase}").should be_present end def get_image_filename(filename)