diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-06-01 00:03:57 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-06-01 00:03:57 +0200 |
commit | 26719d252dd8e3a53c08da2ed3c3a8d62fbbc30a (patch) | |
tree | 2468d01d1430521f0982287b91736da90bc46970 /test/git/test_git.py | |
parent | d2c1bd80350f692c5c2298cb88859564ec0a061b (diff) | |
parent | 48af0ac87dc3beef4d3e6c7982b158d50f7b2a6e (diff) | |
download | gitpython-26719d252dd8e3a53c08da2ed3c3a8d62fbbc30a.tar.gz |
Merge branch 'master' of git://gitorious.org/git-python/david
Diffstat (limited to 'test/git/test_git.py')
-rw-r--r-- | test/git/test_git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_git.py b/test/git/test_git.py index d0f3b72e..2b2464b0 100644 --- a/test/git/test_git.py +++ b/test/git/test_git.py @@ -24,7 +24,7 @@ class TestGit(object): assert_equal(["-s", "-t"], self.git.transform_kwargs(**{'s': True, 't': True})) def test_it_executes_git_to_shell_and_returns_result(self): - assert_match('^git version [\d\.]*$', self.git.execute(["git","version"])) + assert_match('^git version [\d\.]{2}.*$', self.git.execute(["git","version"])) def test_it_accepts_stdin(self): filename = fixture_path("cat_file_blob") |