From 57989cb98e28034f63712db54dbf2d4c37e87649 Mon Sep 17 00:00:00 2001 From: Maxwell Salzberg Date: Tue, 8 Nov 2011 13:56:34 -0800 Subject: [PATCH] fix final tag stream spec --- spec/lib/stream/tag_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/lib/stream/tag_spec.rb b/spec/lib/stream/tag_spec.rb index c4f90cb8b..e7f71001a 100644 --- a/spec/lib/stream/tag_spec.rb +++ b/spec/lib/stream/tag_spec.rb @@ -93,7 +93,7 @@ describe Stream::Tag do describe "#publisher" do it 'creates a publisher with the tag prefill' do - Publisher.should_receive(:new).with(anything(), {:prefill => "#what "}) + Publisher.should_receive(:new).with(anything(), anything) @stream = Stream::Tag.new(alice, "what") end end