Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed open parenthesis
  • Loading branch information
forresthopkinsa authored Aug 24, 2016
commit e6a9a9d83979ac447c6c5713c046585af84f728c
2 changes: 1 addition & 1 deletion git/test/test_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def test_references_and_objects(self, rw_dir):
empty_repo.heads.master.set_tracking_branch(origin.refs.master) # set local "master" to track remote "master
empty_repo.heads.master.checkout() # checkout local "master" to working tree
# Three above commands in one:
empty_repo.create_head('master', origin.refs.master().set_tracking_branch(origin.refs.master).checkout()
empty_repo.create_head('master'), origin.refs.master().set_tracking_branch(origin.refs.master).checkout()
# rename remotes
origin.rename('new_origin')
# push and pull behaves similarly to `git push|pull`
Expand Down