From 009eb1e51c47abde7bedeb4443be7b97dc580333 Mon Sep 17 00:00:00 2001 From: Evan Purkhiser Date: Mon, 27 Feb 2023 13:22:17 -0800 Subject: [PATCH] ref(py): Remove one more legacy project_id from Environment --- tests/sentry/api/endpoints/test_project_environment_details.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sentry/api/endpoints/test_project_environment_details.py b/tests/sentry/api/endpoints/test_project_environment_details.py index 84d7f1487f376e..90730f81ec02e0 100644 --- a/tests/sentry/api/endpoints/test_project_environment_details.py +++ b/tests/sentry/api/endpoints/test_project_environment_details.py @@ -11,7 +11,7 @@ def test_get(self): project = self.create_project() environment = Environment.objects.create( - project_id=project.id, organization_id=project.organization_id, name="production" + organization_id=project.organization_id, name="production" ) environment.add_project(project)