lib/tracker_api/endpoints/comments.rb in tracker_api-0.2.10 vs lib/tracker_api/endpoints/comments.rb in tracker_api-0.2.11

- old
+ new

@@ -7,10 +7,10 @@ @client = client end def get(project_id, story_id, params={}) data = client.paginate("/projects/#{project_id}/stories/#{story_id}/comments", params: params) - raise TrackerApi::Errors::UnexpectedData, 'Array of comments expected' unless data.is_a? Array + raise Errors::UnexpectedData, 'Array of comments expected' unless data.is_a? Array data.map do |comment| Resources::Comment.new({ story_id: story_id }.merge(comment)) end end \ No newline at end of file