Skip to content

Commit

Permalink
tests: remove useless markers
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancetnik committed May 20, 2024
1 parent 5edcf3d commit ccfc824
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions tests/brokers/confluent/test_test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ async def h2(): ...

assert len(routes) == 2

@pytest.mark.confluent()
async def test_multiple_subscribers_different_groups(
self,
queue: str,
Expand All @@ -153,7 +152,6 @@ async def subscriber2(): ...
assert subscriber1.mock.call_count == 1
assert subscriber2.mock.call_count == 1

@pytest.mark.confluent()
async def test_multiple_subscribers_same_group(
self,
queue: str,
Expand Down
2 changes: 0 additions & 2 deletions tests/brokers/kafka/test_test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ async def h2(): ...

assert len(routes) == 2

@pytest.mark.kafka()
async def test_multiple_subscribers_different_groups(
self,
queue: str,
Expand All @@ -201,7 +200,6 @@ async def subscriber2(): ...
assert subscriber1.mock.call_count == 1
assert subscriber2.mock.call_count == 1

@pytest.mark.kafka()
async def test_multiple_subscribers_same_group(
self,
queue: str,
Expand Down

0 comments on commit ccfc824

Please sign in to comment.