Skip to content

Commit

Permalink
Update test/test_utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkf authored Mar 4, 2024
1 parent 51d3d0c commit 63e3907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def test_shell_quote(self):
args = ['ffmpeg', '-i', encodeFilename('ñ€ß\'.mp4')]
self.assertEqual(
shell_quote(args),
"""ffmpeg -i 'ñ€ß'"'"'.mp4'""" if not(compat_os_name in ('nt', 'ce')) else '''ffmpeg -i "ñ€ß'.mp4"''')
"""ffmpeg -i 'ñ€ß'"'"'.mp4'""" if not (compat_os_name in ('nt', 'ce')) else '''ffmpeg -i "ñ€ß'.mp4"''')

def test_float_or_none(self):
self.assertEqual(float_or_none('42.42'), 42.42)
Expand Down

0 comments on commit 63e3907

Please sign in to comment.