From 5e2b13673114436f37590e9b053a3253a3b93bd3 Mon Sep 17 00:00:00 2001 From: Michael Sarahan Date: Wed, 8 Jan 2020 13:13:03 -0600 Subject: [PATCH] fix bytes typo on win tests --- tests/test_activate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_activate.py b/tests/test_activate.py index 77da45379e..9c94892eeb 100644 --- a/tests/test_activate.py +++ b/tests/test_activate.py @@ -107,7 +107,7 @@ def bash_unsupported_because(): reason = 'bash: WSL is not yet supported. Pull requests welcome.' else: output = check_output(bash + ' --version') - if b'msys' not in output and 'bcygwin' not in output: + if b'msys' not in output and b'cygwin' not in output: reason = 'bash: Only MSYS2 and Cygwin bash are supported on Windows, found:\n{}\n'.format(output) elif bash.startswith(sys.prefix): reason = ('bash: MSYS2 bash installed from m2-bash in prefix {}.\n'