From 133c1572f64c3adf6da42022f7de8165958d63ed Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Thu, 12 Jan 2017 19:02:58 +0100 Subject: [PATCH] Remove unnecessary activation of LSO mode in a test. --- testfuncs.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/testfuncs.py b/testfuncs.py index 945ab8f..8ca6d93 100644 --- a/testfuncs.py +++ b/testfuncs.py @@ -551,9 +551,7 @@ def do_tests(): test('typecast(Infinity, unicode)', u'Infinity') test('typecast(NaN, unicode)', u'NaN') test('typecast(Vector((NaN,-Infinity,-0.)), unicode)', u'') - lslcommon.LSO = True test('typecast(Vector((NaN,-Infinity,-0.)), unicode, True, True)', u'') - lslcommon.LSO = False test('typecast(Vector((NaN,2.,3.)), list)', [Vector((NaN,2.,3.))]) test('typecast([Vector((NaN,2.,-Infinity))], list)', [Vector((NaN,2.,-Infinity))])