diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2012-07-24 22:49:54 +0100 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2012-07-24 22:49:54 +0100 |
commit | d640fe7af8294c6d7e41429dba73bef506b30864 (patch) | |
tree | 9240e304d16d47cc820331e4178c320f10d35b38 /tests/run | |
parent | 3a06698118654536f148d3b088298216467ff135 (diff) | |
download | Nim-d640fe7af8294c6d7e41429dba73bef506b30864.tar.gz |
Added mycert.pem for the asynciossl test.
Diffstat (limited to 'tests/run')
-rw-r--r-- | tests/run/tasynciossl.nim | 2 |
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) |