summaryrefslogtreecommitdiff
path: root/git/test/test_index.py
diff options
context:
space:
mode:
authorfirm1 <firm1@github.com>2015-01-07 13:51:48 +0100
committerfirm1 <firm1@github.com>2015-01-07 13:51:48 +0100
commitb6ed8d46c72366e111b9a97a7c238ef4af3bf4dc (patch)
tree29dd6ff057fdbfaef7b067718fa76ddabfa9522b /git/test/test_index.py
parent0d4b4ea9c84198a9b6003611a3af00ee677d09a6 (diff)
downloadgitpython-b6ed8d46c72366e111b9a97a7c238ef4af3bf4dc.tar.gz
fix pep8
Diffstat (limited to 'git/test/test_index.py')
-rw-r--r--git/test/test_index.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/git/test/test_index.py b/git/test/test_index.py
index a0d1ffbc..f7d1cc6a 100644
--- a/git/test/test_index.py
+++ b/git/test/test_index.py
@@ -10,6 +10,7 @@ from git.test.lib import (
fixture,
with_rw_repo
)
+from git.util import Actor
from git import (
IndexFile,
BlobFilter,
@@ -444,10 +445,10 @@ class TestIndex(TestBase):
assert new_commit.parents[0] == cur_commit
assert len(new_commit.parents) == 1
assert cur_head.commit == cur_commit
-
+
# commit with other actor
cur_commit = cur_head.commit
-
+
my_author = Actor("An author", "author@example.com")
my_committer = Actor("An committer", "committer@example.com")
commit_actor = index.commit(commit_message, author=my_author, committer=my_committer)