Skip to content

Commit

Permalink
test cases renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
roma-frolov committed Sep 25, 2024
1 parent e3262b1 commit ff3a57f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/prometheus/confluent/test_confluent.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def get_broker(self, apply_types: bool = False):


@pytest.mark.confluent
class TestConsumeWithTelemetry(TestConsume):
class TestConsumeWithPrometheus(TestConsume):
def get_broker(self, apply_types: bool = False):
return KafkaBroker(
middlewares=(KafkaPrometheusMiddleware(registry=CollectorRegistry()),),
Expand Down
2 changes: 1 addition & 1 deletion tests/prometheus/kafka/test_kafka.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def get_broker(self, apply_types: bool = False):


@pytest.mark.kafka
class TestConsumeWithTelemetry(TestConsume):
class TestConsumeWithPrometheus(TestConsume):
def get_broker(self, apply_types: bool = False):
return KafkaBroker(
middlewares=(KafkaPrometheusMiddleware(registry=CollectorRegistry()),),
Expand Down
2 changes: 1 addition & 1 deletion tests/prometheus/nats/test_nats.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_broker(self, apply_types: bool = False):


@pytest.mark.nats
class TestConsumeWithTelemetry(TestConsume):
class TestConsumeWithPrometheus(TestConsume):
def get_broker(self, apply_types: bool = False):
return NatsBroker(
middlewares=(NatsPrometheusMiddleware(registry=CollectorRegistry()),),
Expand Down
2 changes: 1 addition & 1 deletion tests/prometheus/rabbit/test_rabbit.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def get_broker(self, apply_types: bool = False):


@pytest.mark.rabbit
class TestConsumeWithTelemetry(TestConsume):
class TestConsumeWithPrometheus(TestConsume):
def get_broker(self, apply_types: bool = False):
return RabbitBroker(
middlewares=(RabbitPrometheusMiddleware(registry=CollectorRegistry()),),
Expand Down
2 changes: 1 addition & 1 deletion tests/prometheus/redis/test_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def get_broker(self, apply_types: bool = False):


@pytest.mark.redis
class TestConsumeWithTelemetry(TestConsume):
class TestConsumeWithPrometheus(TestConsume):
def get_broker(self, apply_types: bool = False):
return RedisBroker(
middlewares=(RedisPrometheusMiddleware(registry=CollectorRegistry()),),
Expand Down

0 comments on commit ff3a57f

Please sign in to comment.