From 17fd6188b450cb61349008c1c1f252e6eeb9e552 Mon Sep 17 00:00:00 2001 From: Sylvain MARIE Date: Tue, 19 Mar 2019 10:49:11 +0100 Subject: [PATCH] Fixed last fix :) --- makefun/tests/test_so.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefun/tests/test_so.py b/makefun/tests/test_so.py index 7162950..381789c 100644 --- a/makefun/tests/test_so.py +++ b/makefun/tests/test_so.py @@ -300,7 +300,7 @@ def test(a, b, x, y): """ - if (3, 0) <= sys.version_info <= (3, 5): + if (3, 0) <= sys.version_info < (3, 6): # in older versions of python, the order of **kwargs is not guaranteed (see PEP 468) assert captured.out.replace('a=hello', 'b=world') == ref_str.replace('a=hello', 'b=world') else: