From 9c6e3ebe5bd5606fce56225de17c1ae44c6d560b Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Tue, 13 Feb 2024 20:24:16 +0000 Subject: [PATCH] fixed new var ref --- .../recipe_migration_tests/test_recipe_migrations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/recipe_migration_tests/test_recipe_migrations.py b/tests/integration_tests/recipe_migration_tests/test_recipe_migrations.py index 7532bf3a6cbd..22f6e62451a0 100644 --- a/tests/integration_tests/recipe_migration_tests/test_recipe_migrations.py +++ b/tests/integration_tests/recipe_migration_tests/test_recipe_migrations.py @@ -67,7 +67,7 @@ def test_recipe_migration(api_client: TestClient, unique_user: TestUser, mig: Mi response_json = response.json() assert response_json["entries"] - for item in response.json()["entries"]: + for item in response_json["entries"]: assert item["success"] # Validate Create Event