commit | 937bc81f558c83cd920f4bbaaf8de5d2a86e8ea4 | [log] [tgz] |
---|---|---|
author | Jon Hall <jhall@ciena.com> | Tue Jan 31 16:44:10 2017 -0800 |
committer | Jon Hall <jhall@ciena.com> | Tue Jan 31 16:44:10 2017 -0800 |
tree | 83bde0065564b5b8a4027e55e634595b8581cf00 | |
parent | 764f5fd95149e40b6824b444484a840f4e448a21 [diff] [blame] |
Fix a typo Change-Id: Ic779f53a554df2c1ce9df03d2103ebb30a61ffe8
diff --git a/TestON/tests/HA/HAclusterRestart/HAclusterRestart.py b/TestON/tests/HA/HAclusterRestart/HAclusterRestart.py index afd3f78..1112aa8 100644 --- a/TestON/tests/HA/HAclusterRestart/HAclusterRestart.py +++ b/TestON/tests/HA/HAclusterRestart/HAclusterRestart.py
@@ -292,10 +292,10 @@ for app in apps: state = main.CLIs[ 0 ].appStatus( app ) if state == "ACTIVE": - activateResult = activeResult and True + activateResult = activateResult and True else: main.log.error( "{} is in {} state".format( app, state ) ) - activeResult = False + activateResult = False utilities.assert_equals( expect=True, actual=activateResult, onpass="Successfully activated apps",