From bb894c10afdadd2298c10f0ea3c686ef0f49f972 Mon Sep 17 00:00:00 2001 From: Andrew Kent Date: Tue, 21 Sep 2021 11:00:15 -0700 Subject: [PATCH] Update test_error_recovery.py disable certificate verification since test suite uses self signed certs --- cryptol-remote-api/python/tests/cryptol/test_error_recovery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptol-remote-api/python/tests/cryptol/test_error_recovery.py b/cryptol-remote-api/python/tests/cryptol/test_error_recovery.py index 631cc03e5..228c89fda 100644 --- a/cryptol-remote-api/python/tests/cryptol/test_error_recovery.py +++ b/cryptol-remote-api/python/tests/cryptol/test_error_recovery.py @@ -9,7 +9,7 @@ class TestErrorRecovery(unittest.TestCase): def test_ErrorRecovery(self): - c = cryptol.sync.connect() + c = cryptol.sync.connect(verify=False) with self.assertRaises(ArgoException): c.load_file(str(Path('tests','cryptol','test-files','bad.cry')))