We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8c7a77 commit 624ef65Copy full SHA for 624ef65
1 file changed
python/tests/integration/test_kyuubi.py
@@ -4,11 +4,11 @@
4
5
from __future__ import annotations
6
7
-import ast
8
-import json
9
import logging
10
from typing import cast
11
+# import ast
+# import json
12
import jubilant
13
import psycopg2
14
import pytest
@@ -70,8 +70,9 @@ def test_jdbc_endpoint(juju: jubilant.Juju) -> None:
70
self_signed_certificate_unit = next(iter(status.apps["certificates"].units.keys()))
71
task = juju.run(self_signed_certificate_unit, "get-issued-certificates")
72
assert task.return_code == 0
73
- items = ast.literal_eval(task.results["certificates"])
74
- certificates = json.loads(items[0])
+
+ # items = ast.literal_eval(task.results["certificates"])
75
+ # certificates = json.loads(items[0])
76
# ca_cert = certificates["ca"]
77
78
client = KyuubiClient(
0 commit comments