Skip to content

Commit 83a3ecf

Browse files
committed
Fix skipif expression in test_2_to_3_bridge_can_send_binary_files
1 parent e450f74 commit 83a3ecf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/test_rsync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def filter(self, x):
232232
assert len(dest.listdir()) == 1
233233
assert len(source.listdir()) == 1
234234

235-
@py.test.mark.skipif('sys.version_info >= (3)')
235+
@py.test.mark.skipif('sys.version_info >= (3,)')
236236
def test_2_to_3_bridge_can_send_binary_files(self, tmpdir, makegateway):
237237
python = _find_version('3')
238238
gw = makegateway('popen//python=%s' % python)

0 commit comments

Comments
 (0)