From 1f6ced1f7473107a8d3d3beade52dac530d9bc82 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Fri, 8 Jul 2016 20:55:04 -0700 Subject: [PATCH] Fixed tests. --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 02ee9ee..7c01b3d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -175,7 +175,7 @@ def reddit(vcr, request): @pytest.fixture() def terminal(stdscr, config): - term = Terminal(stdscr, ascii=config['ascii']) + term = Terminal(stdscr, config=config) # Disable the python 3.4 addch patch so that the mock stdscr calls are # always made the same way term.addch = lambda window, *args: window.addch(*args)