Description: Fix the paths used in the tests to lookup certificates
Author: Simon Chopin <chopin.simon@gmail.com>
Forwarded: not-needed

Index: fedmsg-0.7.1/fedmsg/tests/fedmsg-test-config.py
===================================================================
--- fedmsg-0.7.1.orig/fedmsg/tests/fedmsg-test-config.py	2013-10-05 11:09:07.980931873 +0200
+++ fedmsg-0.7.1/fedmsg/tests/fedmsg-test-config.py	2013-10-05 11:09:59.641571536 +0200
@@ -23,7 +23,7 @@
 import random
 
 SEP = os.path.sep
-here = os.getcwd()
+here = SEP.join((os.getcwd(), 'fedmsg', 'tests'))
 hostname = socket.gethostname().split('.', 1)[0]
 
 ssl_enabled_for_tests = True
@@ -74,7 +74,7 @@
     # SSL stuff.
     sign_messages=ssl_enabled_for_tests,
     validate_signatures=ssl_enabled_for_tests,
-    ssldir=SEP.join([here, 'dev_certs/keys']),
+    ssldir=SEP.join([here, 'test_certs/keys']),
 
     crl_location="http://threebean.org/fedmsg-tests/crl.pem",
     crl_cache="/tmp/crl.pem",
