commit | 7ab4661d3e23344fda49f34f772478409e8a79ca | [log] [tgz] |
---|---|---|
author | Jeremy Ronquillo <jeremyr@opennetworking.org> | Wed Oct 04 15:49:00 2017 -0700 |
committer | Jeremy Ronquillo <jeremyr@opennetworking.org> | Wed Oct 04 15:56:29 2017 -0700 |
tree | 19dcc2589a0320a4eb9ace679a94ee11ac955b98 | |
parent | 23fb21617769f4320de93b5b1805c6ec3ca9b809 [diff] |
Minor fix to pexpect Change-Id: I4d26a5f0db03b613d7602c364a1d6d8e86fc2660
diff --git a/TestON/drivers/common/clidriver.py b/TestON/drivers/common/clidriver.py index b178700..90b7e3e 100644 --- a/TestON/drivers/common/clidriver.py +++ b/TestON/drivers/common/clidriver.py
@@ -479,7 +479,7 @@ assert "cannot access" not in output assert "command not found" not in output main.log.debug( output ) - lines = [ line for line in output.splitlines() ] + lines = [ line for line in output.split('\r\n') ] retValue = True if ignoreRoot: lastIndex = -2