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
fix(test): update to changes.
  • Loading branch information
StyXman committed Aug 19, 2015
commit ec15e53439d228ec64cb260e02aeae5cc05c5b2b
2 changes: 1 addition & 1 deletion git/test/test_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def test_it_raises_errors(self):

def test_it_transforms_kwargs_into_git_command_arguments(self):
assert_equal(["-s"], self.git.transform_kwargs(**{'s': True}))
assert_equal(["-s5"], self.git.transform_kwargs(**{'s': 5}))
assert_equal(["-s", "5"], self.git.transform_kwargs(**{'s': 5}))

assert_equal(["--max-count"], self.git.transform_kwargs(**{'max_count': True}))
assert_equal(["--max-count=5"], self.git.transform_kwargs(**{'max_count': 5}))
Expand Down