azure pipelines [skip travis] [skip appveyor]

This commit is contained in:
Anthony Sottile 2019-04-28 17:36:54 -07:00
parent 09e64e8ff6
commit 9c6edab726
9 changed files with 72 additions and 85 deletions

View file

@ -145,7 +145,7 @@ def test_argument_too_long():
def test_xargs_smoke():
ret, out, err = xargs.xargs(('echo',), ('hello', 'world'))
assert ret == 0
assert out == b'hello world\n'
assert out.replace(b'\r\n', b'\n') == b'hello world\n'
assert err == b''