We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 456675b commit abb06a4Copy full SHA for abb06a4
ravendb/tests/jvm_migrated_tests/https_tests/test_https.py
@@ -1,5 +1,6 @@
1
import base64
2
import io
3
+import os
4
import tempfile
5
import unittest
6
from typing import Tuple
@@ -174,6 +175,7 @@ def test_can_use_server_generated_certificate(self):
174
175
tmp = tempfile.mkstemp()
176
with open(tmp[1], "wb") as file:
177
file.write(key[0].encode("utf-8"))
178
+ file.write(os.linesep.encode("utf-8"))
179
file.write(key[1])
180
store_with_out_cert.certificate_pem_path = tmp[1]
181
store_with_out_cert.initialize()
0 commit comments