Skip to content

Commit

Permalink
Fix kill_ovn_controller_podified test linters
Browse files Browse the repository at this point in the history
So far we had a few typos in the kill_ovn_controller_podified test which
failed the linters.

This patch fixes those typos.

Change-Id: I09dbe4b8e96289fe2fc9ab39a937d7fe5c65e194
  • Loading branch information
oschwart committed Aug 16, 2024
1 parent c2467bb commit 21988b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tobiko/tests/faults/neutron/test_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,11 +766,11 @@ def test_kill_ovn_controller_podified(self):
for ovn_ctl_ovs_pod in _openshift.get_pods(
labels={'service': 'ovn-controller-ovs'}):
ovn_ctl_ovs_pod.execute(['sh', '-c', 'killall ovsdb-server'])
LOG.info('%s' 'was killed', ovn_ctl_ovs_pod)
LOG.info('%s was killed', ovn_ctl_ovs_pod)
for ovn_ctl_pod in _openshift.get_pods(
labels={'service': 'ovn-controller'}):
ovn_ctl_pod.execute(['sh', '-c', 'killall ovn-controller'])
LOG.info('%s' 'was killed', ovn_ctl_pod)
LOG.info('%s was killed', ovn_ctl_pod)
# After killing ovn-controller pods, it may take from 1 sec to 60 sec
# to recover all ovn-controller pods.
# Check ovn-controller pods
Expand Down

0 comments on commit 21988b0

Please sign in to comment.