Skip to content

Commit

Permalink
fix up
Browse files Browse the repository at this point in the history
Signed-off-by: Mahesh Shetty <[email protected]>
  • Loading branch information
mashetty330 committed Sep 6, 2023
1 parent b524574 commit 4cbd153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/system_test/test_object_expiration.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def test_object_expiration_with_disruptions(
# Shutdown the node where noobaa db pod is running
nb_db_pod = get_noobaa_db_pod()
nb_db_pod_node = nb_db_pod.get_node()
nodes.stop_nodes(nodes=[get_node_objs([nb_db_pod_node])])
nodes.stop_nodes(nodes=get_node_objs([nb_db_pod_node]))
wait_for_nodes_status(
node_names=[nb_db_pod_node],
status=constants.NODE_NOT_READY,
Expand All @@ -207,7 +207,7 @@ def test_object_expiration_with_disruptions(
schedule_nodes([nb_core_pod_node])

# Turn on the noobaa db pod node
nodes.start_nodes(nodes=[get_node_objs([nb_db_pod_node])])
nodes.start_nodes(nodes=get_node_objs([nb_db_pod_node]))
wait_for_nodes_status(
node_names=[nb_db_pod_node],
status=constants.NODE_READY,
Expand Down

0 comments on commit 4cbd153

Please sign in to comment.