From 31bbfad3c87e304ab1eab141716db28fef1feb84 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Mon, 1 Dec 2025 11:16:41 -0500 Subject: [PATCH] fix(tests) Unskip test that was previously flaky Unskip a test that was marked flaky due to incorrect redis state during tests. The inconsistent redis state has been corrected and this test should be stable again. Refs INFRENG-210 --- tests/sentry/core/endpoints/test_organization_index.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/sentry/core/endpoints/test_organization_index.py b/tests/sentry/core/endpoints/test_organization_index.py index 4b194d90d33cd6..26c8d52321b488 100644 --- a/tests/sentry/core/endpoints/test_organization_index.py +++ b/tests/sentry/core/endpoints/test_organization_index.py @@ -4,7 +4,6 @@ from typing import Any from unittest.mock import MagicMock, patch -import pytest from django.test import override_settings from django.urls import reverse @@ -184,7 +183,6 @@ def test_with_default_team_true(self) -> None: ) OrganizationMemberTeam.objects.get(organizationmember_id=org_member.id, team_id=team.id) - @pytest.mark.skip("flaky: INFRENG-210") def test_valid_slugs(self) -> None: valid_slugs = ["santry", "downtown-canada", "1234-foo"] for input_slug in valid_slugs: