From 3d04487fa89ee01433c08b41ea367d0d5090cf8a Mon Sep 17 00:00:00 2001 From: silvacarloss Date: Thu, 10 Mar 2022 17:52:24 -0300 Subject: [PATCH] Fix sporadic test failure in manila Fixes a sporadic unit test failure that was introduced during Yoga by removing an unecessary waiter. Closes-bug: #1964521 Change-Id: If26a54c1a43cbf82b38ab9fa034e5e1c0ff88fe4 --- manila/tests/test_service.py | 1 - 1 file changed, 1 deletion(-) diff --git a/manila/tests/test_service.py b/manila/tests/test_service.py index e8edd4369c..e305806366 100644 --- a/manila/tests/test_service.py +++ b/manila/tests/test_service.py @@ -89,7 +89,6 @@ class ServiceFlagsTestCase(test.TestCase): app = service.Service.create(host=host, binary=binary) app.start() app.stop() - app.wait() ref = db.service_get(context.get_admin_context(), app.service_id) db.service_destroy(context.get_admin_context(), app.service_id) self.assertFalse(ref['disabled'])