From c607697400affcc0e50e51baa329aec81ba3cf7b Mon Sep 17 00:00:00 2001 From: danielx123 Date: Mon, 22 Apr 2019 21:29:08 -0400 Subject: [PATCH] Fixed test case --- testing/test_terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_terminal.py b/testing/test_terminal.py index bfa928d74..0b57114e5 100644 --- a/testing/test_terminal.py +++ b/testing/test_terminal.py @@ -286,7 +286,7 @@ class TestTerminal(object): assert 1 == 1""" ) result = testdir.runpytest() - result.stdout.fnmatch_lines(["*Package*", "*Version*"]) + result.stdout.fnmatch_lines(["*Package Version *"]) class TestCollectonly(object):