lib/cp8_cli/commands/suggest.rb in cp8_cli-6.0.1 vs lib/cp8_cli/commands/suggest.rb in cp8_cli-8.0.0
- old
+ new
@@ -5,11 +5,11 @@
def run
cache_original_branch
suggestion_branch.checkout
suggestion_branch.push
- pull_request.open(expand: nil)
+ pull_request.open
original_branch.checkout
original_branch.reset
end
@@ -29,9 +29,10 @@
def pull_request
Github::PullRequest.new(
from: suggestion_branch,
to: original_branch,
+ expand: nil
)
end
end
end