Fix syntax in test_load_balancer_basics._check_load_balancing
The set == {} syntax is invalid in python 2.6.
Note that even though the test is currently being skipped,
it's interpreted before the skip is executed so this fails
regardless of the skip decorator.
Closes-Bug: #1277951
Change-Id: Ic64622604a717db33555784cfe265e6af3e6dea7
diff --git a/tempest/scenario/test_load_balancer_basic.py b/tempest/scenario/test_load_balancer_basic.py
index ff4bcff..68f6e62 100644
--- a/tempest/scenario/test_load_balancer_basic.py
+++ b/tempest/scenario/test_load_balancer_basic.py
@@ -214,7 +214,7 @@
resp.append(
urllib.urlopen(
"http://{0}/".format(floating_ip_vip)).read())
- self.assertEqual({"server1\n", "server2\n"}, set(resp))
+ self.assertEqual(set(["server1\n", "server2\n"]), set(resp))
self.assertEqual(5, resp.count("server1\n"))
self.assertEqual(5, resp.count("server2\n"))