From 958c8435124631b40660adabca25eb57b0026e00 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Sun, 10 Mar 2024 20:17:24 +0100 Subject: [PATCH] Move OpenALPR cloud fixture to integration test (#112994) --- tests/{ => components/openalpr_cloud}/fixtures/alpr_cloud.json | 0 tests/components/openalpr_cloud/test_image_processing.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{ => components/openalpr_cloud}/fixtures/alpr_cloud.json (100%) diff --git a/tests/fixtures/alpr_cloud.json b/tests/components/openalpr_cloud/fixtures/alpr_cloud.json similarity index 100% rename from tests/fixtures/alpr_cloud.json rename to tests/components/openalpr_cloud/fixtures/alpr_cloud.json diff --git a/tests/components/openalpr_cloud/test_image_processing.py b/tests/components/openalpr_cloud/test_image_processing.py index 090fcabe8a4..7115c3e7bf0 100644 --- a/tests/components/openalpr_cloud/test_image_processing.py +++ b/tests/components/openalpr_cloud/test_image_processing.py @@ -136,7 +136,7 @@ async def test_openalpr_process_image( aioclient_mock.post( OPENALPR_API_URL, params=PARAMS, - text=load_fixture("alpr_cloud.json"), + text=load_fixture("alpr_cloud.json", "openalpr_cloud"), status=200, )