Change the way how I'm checking state

This commit is contained in:
Dariusz Smigiel
2021-04-02 07:40:00 -07:00
parent 51a53d4e86
commit 8b47c8a37f

View File

@@ -662,7 +662,7 @@ class MySQLInnoDBClusterColdStartTest(MySQLBaseTest):
'i-really-mean-it': True
})
assert "Success" in action.data["results"]["outcome"], (
assert action.data.get("results")["outcome"] is not Noe, (
"Force quorum using partition of action failed: {}"
.format(action.data))