summaryrefslogtreecommitdiff
path: root/tests/test_utils.py
diff options
context:
space:
mode:
authorkmvanbrunt <kmvanbrunt@gmail.com>2019-01-24 16:19:36 -0500
committerGitHub <noreply@github.com>2019-01-24 16:19:36 -0500
commitc7f7757dbd5279d30318a3fe30e1f0bf7d415901 (patch)
treee655391677a2794cdf4b3d56181fb4188087d6f2 /tests/test_utils.py
parentfe324f2fa74d556a0c154632c88c9049da8d75bc (diff)
parent95961816178cfe7c2bf7ef2e6dd450d53a5a7982 (diff)
downloadcmd2-git-c7f7757dbd5279d30318a3fe30e1f0bf7d415901.tar.gz
Merge pull request #619 from python-cmd2/string_stream
Fixed buffering issue when echoing StdSim data
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r--tests/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py
index 2f727aaf..75d4479a 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -122,7 +122,7 @@ def test_quot_string_if_needed_no():
@pytest.fixture
def stdout_sim():
- stdsim = cu.StdSim(sys.stdout)
+ stdsim = cu.StdSim(sys.stdout, echo=True)
return stdsim
@pytest.fixture