Skip to content

Commit 8aeaac1

Browse files
committed
Fix failing test w/ incomplete regex
1 parent 03a1d4a commit 8aeaac1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_default.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ def test_clt_package_metadata(host):
2424
def test_git_is_useable(host):
2525
c = host.command('/usr/bin/git --version')
2626
assert c.rc == 0
27-
assert re.match('^git version \d+(.\d+)* \(Apple Git-\d+\)$', c.stdout)
27+
assert re.match('^git version \d+(.\d+)* \(Apple Git-\d+(\.\d+)*\)$', c.stdout)

0 commit comments

Comments
 (0)