From 4f9304cbd9437b16ee10e7b016e7c64738434d70 Mon Sep 17 00:00:00 2001 From: Morten Enemark Lund Date: Fri, 9 Sep 2016 09:21:38 +0200 Subject: [PATCH] Add xonsh_builtins fixture to test_commands_cache_lazy() --- tests/test_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tools.py b/tests/test_tools.py index 9a3aa200f..ead9f22ea 100644 --- a/tests/test_tools.py +++ b/tests/test_tools.py @@ -1118,7 +1118,7 @@ def test_expand_case_matching(inp, exp): assert exp == obs -def test_commands_cache_lazy(): +def test_commands_cache_lazy(xonsh_builtins): cc = CommandsCache() assert not cc.lazyin('xonsh') assert 0 == len(list(cc.lazyiter()))