We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cf3fe8 commit eff441bCopy full SHA for eff441b
1 file changed
python/openshell/sandbox_test.py
@@ -1381,7 +1381,9 @@ def test_load_cluster_bearer_token_handles_non_ascii_utf8_oidc(tmp_path: Path) -
1381
"client_id": "c",
1382
"client_secret": "s",
1383
}
1384
- (gateway_dir / "oidc_token.json").write_bytes(json.dumps(bundle, ensure_ascii=False).encode("utf-8"))
+ (gateway_dir / "oidc_token.json").write_bytes(
1385
+ json.dumps(bundle, ensure_ascii=False).encode("utf-8")
1386
+ )
1387
token = _load_cluster_bearer_token(gateway_dir)
1388
assert token == "accéss"
1389
0 commit comments