From f964c65f16b973fdf5070f93aea8aa3e0026dbd8 Mon Sep 17 00:00:00 2001 From: nvbn Date: Sun, 6 Sep 2015 13:40:29 +0300 Subject: [PATCH] #362 Fix tests for python 2 --- tests/functional/plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/plots.py b/tests/functional/plots.py index 910b4b2b..fcbede63 100644 --- a/tests/functional/plots.py +++ b/tests/functional/plots.py @@ -83,4 +83,4 @@ def without_confirmation(proc, TIMEOUT): def how_to_configure(proc, TIMEOUT): proc.sendline(u'unalias fuck') proc.sendline(u'fuck') - assert proc.expect([TIMEOUT, "alias isn't configured"]) + assert proc.expect([TIMEOUT, u"alias isn't configured"])