Fix : Change to make sure urllib3 is taken from
/usr/local/lib/python2.7/dist-packages

Change-Id: I77a90c6b05787b01ce7ce7614da281cc0c0d2227
diff --git a/src/test/setup/cord-test.py b/src/test/setup/cord-test.py
index c2e8ebe..0ff73d9 100755
--- a/src/test/setup/cord-test.py
+++ b/src/test/setup/cord-test.py
@@ -19,6 +19,7 @@
 import shutil, platform, re
 utils_dir = os.path.join( os.path.dirname(os.path.realpath(__file__)), '../utils')
 sys.path.append(utils_dir)
+sys.path.insert(1, '/usr/local/lib/python2.7/dist-packages')
 from OnosCtrl import OnosCtrl
 from OltConfig import OltConfig
 from threadPool import ThreadPool