summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDick Marinus <dick@mrns.nl>2019-01-22 16:24:59 +0100
committerGitHub <noreply@github.com>2019-01-22 16:24:59 +0100
commit9306d94bf0838219fe885d6fe4303aa44c8c0125 (patch)
treec0f4ee32847cd6f85ebc2754f17ae5850dc0dde5
parentef8aac61c476bd46747d3d4910a4d494a59fa375 (diff)
parent69118eddeb5196960615f1b394ac0317de406e93 (diff)
Merge pull request #999 from saper/editor_environment
VISUAL overrides the value of EDITOR for the \e command
-rw-r--r--tests/features/environment.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/features/environment.py b/tests/features/environment.py
index dedbe093..25f5c6ba 100644
--- a/tests/features/environment.py
+++ b/tests/features/environment.py
@@ -22,6 +22,7 @@ def before_all(context):
os.environ['COLUMNS'] = "100"
os.environ['PAGER'] = 'cat'
os.environ['EDITOR'] = 'ex'
+ os.environ['VISUAL'] = 'ex'
context.package_root = os.path.abspath(
os.path.dirname(os.path.dirname(os.path.dirname(__file__))))