From 073334f307a14aeefe6011505af3417b7ec1a0c8 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sat, 22 Aug 2020 18:36:19 -0700 Subject: [PATCH] Stop setting TERM in history test Because TERM was set to something other than 'dumb', we were subject to syntax highlighting and other interactive features that would affect the output. In practice we were getting lucky timing-wise, but with upcoming interactive changes syntax highlighting started to fail this test. --- tests/pexpects/history.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/pexpects/history.py b/tests/pexpects/history.py index c9bb5b47f..551e0c226 100644 --- a/tests/pexpects/history.py +++ b/tests/pexpects/history.py @@ -15,7 +15,6 @@ from pexpect_helper import SpawnedProc import os os.environ["PAGER"] = "cat" -os.environ["TERM"] = "xterm" sp = SpawnedProc(env=os.environ.copy())