summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2018-09-06 15:08:51 +0200
committerGitHub <noreply@github.com>2018-09-06 15:08:51 +0200
commitb25d39e93a65d5f51789d89a58ff575bfdd096a8 (patch)
tree6b23691ad0d69a0ed51eee964ad3b9f164359488 /tests
parent462cf15d2cea948143ae710f40b3d44448c2e62c (diff)
parent46a4cf058d805b7eb465f8b14dbe6c415e2dc67c (diff)
downloadpexpect-git-b25d39e93a65d5f51789d89a58ff575bfdd096a8.tar.gz
Merge pull request #522 from stanislavlevin/fix_test_bash
Fix "test_bash" test
Diffstat (limited to 'tests')
-rw-r--r--tests/test_replwrap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_replwrap.py b/tests/test_replwrap.py
index b4477a8..06ca07b 100644
--- a/tests/test_replwrap.py
+++ b/tests/test_replwrap.py
@@ -24,8 +24,8 @@ class REPLWrapTestCase(unittest.TestCase):
def test_bash(self):
bash = replwrap.bash()
- res = bash.run_command("time")
- assert 'real' in res, res
+ res = bash.run_command("alias")
+ assert 'alias' in res, res
try:
bash.run_command('')