From 68820c39765bb54b548a90746b75484694ad507c Mon Sep 17 00:00:00 2001 From: James Tanner Date: Tue, 25 Jul 2017 22:11:22 -0400 Subject: [PATCH] quickly fix py3 tests --- tests/test_nativetypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_nativetypes.py b/tests/test_nativetypes.py index 8bff5038..aec1a3b8 100644 --- a/tests/test_nativetypes.py +++ b/tests/test_nativetypes.py @@ -107,4 +107,4 @@ class TestNativeEnvironment(object): t = env.from_string("{{ true.__class__|string }}") result = t.render() assert not isinstance(result, type) - assert result == "" + assert result in ["", ""] -- 2.47.2