maybe syntax?

This commit is contained in:
Adam Zethraeus 2022-06-10 00:23:16 -07:00 committed by GitHub
parent 5f423bee31
commit 20d9e42414
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,7 +105,7 @@ def test_disallows_gitlfs_when_specified(temp_git_dir): # pragma: no cover
cmd_output('git', 'lfs', 'track', 'f.py')
cmd_output('git', 'add', '--', '.')
# Should reject file
assert main(('--maxkb', '9', '--allow-in-lfs', 'false', 'f.py')) == 1
assert main(('--maxkb', '9', '--allow-in-lfs', 'False', 'f.py')) == 1
@xfailif_no_gitlfs