diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-22 16:45:12 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-22 16:45:12 +0100 |
commit | 0ddbe4bc24e634e6496abd3bc6ce3c4377cdf2fb (patch) | |
tree | 3fea2f99d9108cddc99d87ec834ad176b486bd5b /git/test/test_docs.py | |
parent | 5ad07f7b23e762e3eb99ce45020375d2bd743fc5 (diff) | |
download | gitpython-0ddbe4bc24e634e6496abd3bc6ce3c4377cdf2fb.tar.gz |
Added test for `sshkey` context manager.
It verifies that the script is actually called.
Interestingly, the shell script version works within an msysgit environment
on windows.
Fixes #234
Diffstat (limited to 'git/test/test_docs.py')
-rw-r--r-- | git/test/test_docs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_docs.py b/git/test/test_docs.py index 965d10fb..175e728a 100644 --- a/git/test/test_docs.py +++ b/git/test/test_docs.py @@ -440,7 +440,7 @@ class Tutorials(TestBase): # [32-test_references_and_objects] private_key_file = os.path.join(rw_dir, 'id_rsa_deployment_key') with repo.git.sshkey(private_key_file): - # Note that we don't actually make the call here, as our test-setup doesn't permit it to + # Note that we don't actually make the call here, as our test-setup doesn't permit it to # succeed. # It will in your case :) repo.remotes.origin.fetch |