We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 824861d commit 0d487b6Copy full SHA for 0d487b6
1 file changed
py/src/braintrust/devserver/test_server_integration.py
@@ -104,9 +104,7 @@ def test_cors_preflight_allows_gateway_header(client):
104
)
105
assert response.status_code == 200
106
allowed = response.headers.get("access-control-allow-headers", "")
107
- assert "x-bt-use-gateway" in allowed, (
108
- f"x-bt-use-gateway not found in access-control-allow-headers: {allowed}"
109
- )
+ assert "x-bt-use-gateway" in allowed, f"x-bt-use-gateway not found in access-control-allow-headers: {allowed}"
110
111
112
@pytest.mark.vcr
0 commit comments