Browse Source

Merge branch 'improved_tracebacks' of https://github.com/savannahostrowski/fastapi into improved_tracebacks

pull/14306/head
Savannah Ostrowski 9 months ago
parent
commit
dc7053f1ec
  1. 2
      tests/test_validation_error_context.py

2
tests/test_validation_error_context.py

@ -2,7 +2,6 @@ from fastapi import FastAPI, Request, WebSocket
from fastapi.exceptions import (
RequestValidationError,
ResponseValidationError,
WebSocketException,
WebSocketRequestValidationError,
)
from fastapi.testclient import TestClient
@ -111,4 +110,3 @@ def test_validation_error_with_no_context():
assert "1 validation error:" in error_str
assert "Endpoint" not in error_str
assert 'File "' not in error_str

Loading…
Cancel
Save