Increase timeout for WaitCondition test

This test has been failing intermittently in the gate. There's no
obvious pattern to the failures, and looking at a random set of logs
there's no obvious cause other than that signals don't start to come in
until very close to the timeout time. So it appear that slow nodes are
at least part of the issue. Increase the timeout to give them more time
to boot.

Change-Id: I7013d3629d0df893cefc47478f650135a616103f
diff --git a/heat_tempest_plugin/tests/functional/test_os_wait_condition.py b/heat_tempest_plugin/tests/functional/test_os_wait_condition.py
index 603b5e5..bb8513a 100644
--- a/heat_tempest_plugin/tests/functional/test_os_wait_condition.py
+++ b/heat_tempest_plugin/tests/functional/test_os_wait_condition.py
@@ -106,5 +106,5 @@
         params = {'flavor': self.conf.minimal_instance_type,
                   'image': self.conf.minimal_image_ref,
                   'network': self.conf.fixed_network_name,
-                  'timeout': 120}
+                  'timeout': 180}
         self.stack_create(template=self.template, parameters=params)