summary refs log tree commit diff stats
path: root/tests/run
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@googlemail.com>2012-07-24 22:49:54 +0100
committerDominik Picheta <dominikpicheta@googlemail.com>2012-07-24 22:49:54 +0100
commitd640fe7af8294c6d7e41429dba73bef506b30864 (patch)
tree9240e304d16d47cc820331e4178c320f10d35b38 /tests/run
parent3a06698118654536f148d3b088298216467ff135 (diff)
downloadNim-d640fe7af8294c6d7e41429dba73bef506b30864.tar.gz
Added mycert.pem for the asynciossl test.
Diffstat (limited to 'tests/run')
-rw-r--r--tests/run/tasynciossl.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run/tasynciossl.nim b/tests/run/tasynciossl.nim
index a0308aebc..99e7df172 100644
--- a/tests/run/tasynciossl.nim
+++ b/tests/run/tasynciossl.nim
@@ -10,7 +10,7 @@ var msgCount = 0
 
 when defined(ssl):
   var ctx = newContext(verifyMode = CVerifyNone, 
-      certFile = "mycert.pem", keyFile = "mycert.pem")
+      certFile = "tests/testdata/mycert.pem", keyFile = "tests/testdata/mycert.pem")
 
   var ctx1 = newContext(verifyMode = CVerifyNone)