6 lines
197 B
Python
6 lines
197 B
Python
from image_prediction.response import build_response
|
|
|
|
|
|
def test_build_response_returns_valid_response(predictions, metadata, response):
|
|
assert build_response(predictions, metadata) == response
|