From 1cf7975319b8cdf4a02d8a42a451bd8efe9a39b6 Mon Sep 17 00:00:00 2001 From: Steven Bazyl Date: Mon, 29 Oct 2012 15:46:20 -0700 Subject: [PATCH] G+ API changed schema :( --- spec/google/api_client/result_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/google/api_client/result_spec.rb b/spec/google/api_client/result_spec.rb index 23ffeac37..a442f51be 100644 --- a/spec/google/api_client/result_spec.rb +++ b/spec/google/api_client/result_spec.rb @@ -103,7 +103,7 @@ describe Google::APIClient::Result do 'https://www.googleapis.com/plus/v1/people/foo/activities/public?' + 'maxResults=20&pageToken=NEXT%2BPAGE%2BTOKEN' @result.data.title.should == 'Plus Public Activity Feed for ' - @result.data.id.should == 123456790 + @result.data.id.should == "123456790" @result.data.items.should be_empty end end @@ -143,7 +143,7 @@ describe Google::APIClient::Result do @result.data.selfLink.should == 'https://www.googleapis.com/plus/v1/people/foo/activities/public?' @result.data.title.should == 'Plus Public Activity Feed for ' - @result.data.id.should == 123456790 + @result.data.id.should == "123456790" @result.data.items.should be_empty end end