Commit 445b3aa3 authored by Julien Muchembled's avatar Julien Muchembled

Update testRestartWithMissingStorageFastStartup

What testRestartWithMissingStorageFastStartup tested was never broken.
It is wanted that the missing storage is not known in this use case.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@2783 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 1349c8db
......@@ -74,7 +74,8 @@ class Test(NEOThreadedTest):
cluster.reset()
try:
cluster.start(storage_list=(s1,), fast_startup=fast_startup)
self.assertEqual(NodeStates.UNKNOWN, cluster.getNodeState(s2))
self.assertEqual((NodeStates.UNKNOWN, None)[fast_startup],
cluster.getNodeState(s2))
finally:
cluster.stop()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment