From 9750684e6152f792cefa06574a5e0b985eb013c9 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 29 Jul 2010 10:10:17 -0700 Subject: [PATCH] Maybe because diasporaparser was moved out to a different file? --- spec/user_encryption_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/user_encryption_spec.rb b/spec/user_encryption_spec.rb index 5719a327e..dc68d7fa7 100644 --- a/spec/user_encryption_spec.rb +++ b/spec/user_encryption_spec.rb @@ -74,7 +74,7 @@ describe 'user encryption' do xml = Request.build_xml_for [request] person.destroy personcount = Person.all.count - store_objects_from_xml(xml) + Diaspora::DiasporaParser.store_objects_from_xml(xml) Person.all.count.should == personcount + 1 new_person = Person.first(:url => "http://test.url/") new_person.key_fingerprint.nil?.should == false @@ -135,7 +135,7 @@ describe 'user encryption' do xml = Post.build_xml_for([message]) message.destroy Post.count.should be 0 - store_objects_from_xml(xml) + Diaspora::DiasporaParser.store_objects_from_xml(xml) Post.count.should be 0 end