diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-07-14 01:24:25 -0700 |
---|---|---|
committer | Ross Brattain <ross.b.brattain@intel.com> | 2017-07-14 01:24:46 -0700 |
commit | 3bc263e00480f9ebcf14a48ee938cac900c863fe (patch) | |
tree | ca80357899d7a25d0dc8806ae6547ae2b89b36b9 | |
parent | 80e57bf2264577cb08c2c347c7f0d272ee8d192f (diff) |
attacker_process: fix typo s/envrioment/environment/
Change-Id: I1e5db657eb88c73b5d9223c47e2d97dc79eec1f1
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
-rw-r--r-- | yardstick/benchmark/scenarios/availability/attacker/attacker_process.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yardstick/benchmark/scenarios/availability/attacker/attacker_process.py b/yardstick/benchmark/scenarios/availability/attacker/attacker_process.py index f7ab23dcd..cb171eafa 100644 --- a/yardstick/benchmark/scenarios/availability/attacker/attacker_process.py +++ b/yardstick/benchmark/scenarios/availability/attacker/attacker_process.py @@ -47,11 +47,11 @@ class ProcessAttacker(BaseAttacker): stdin=stdin_file) if stdout: - LOG.info("check the envrioment success!") + LOG.info("check the environment success!") return int(stdout.strip('\n')) else: LOG.error( - "the host envrioment is error, stdout:%s, stderr:%s", + "the host environment is error, stdout:%s, stderr:%s", stdout, stderr) return False |