summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
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('')