diff --git a/tests/test_utils.py b/tests/test_utils.py index fbf5d65d..9620d0f9 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -142,9 +142,9 @@ def test_is_genesis_block_returns_true_if_genesis(b): def test_lazy_execution(): from bigchaindb.utils import Lazy - l = Lazy() - l.split(',')[1].split(' ').pop(1).strip() - result = l.run('Like humans, cats tend to favor one paw over another') + lz = Lazy() + lz.split(',')[1].split(' ').pop(1).strip() + result = lz.run('Like humans, cats tend to favor one paw over another') assert result == 'cats' class Cat: @@ -153,7 +153,7 @@ def test_lazy_execution(): cat = Cat('Shmui') - l = Lazy() - l.name.upper() - result = l.run(cat) + lz = Lazy() + lz.name.upper() + result = lz.run(cat) assert result == 'SHMUI'