From: Steven Bazyl Date: Mon, 29 Oct 2012 22:46:20 +0000 (-0700) Subject: G+ API changed schema :( X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/1cf7975319b8cdf4a02d8a42a451bd8efe9a39b6 G+ API changed schema :( --- diff --git a/spec/google/api_client/result_spec.rb b/spec/google/api_client/result_spec.rb index 23ffeac37d..a442f51be3 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