Skip to content

Commit

Permalink
Update async test to support changes
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Dec 5, 2024
1 parent f97fd8c commit c7e649f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,12 +292,12 @@ def test_sync(self):
self.connector_instance.publish_message = real_method


@pytest.mark.usefixtures("rmq_instance")
class MQConnectorChildAsyncModeTest(MQConnectorChildTest):

@classmethod
def setUpClass(cls):
super(MQConnectorChildAsyncModeTest, cls).setUpClass()
cls.connector_instance.async_consumers_enabled = True
def setUp(self):
MQConnectorChildTest.setUp(self)
self.connector_instance.async_consumers_enabled = True


class TestMQConnectorInit(unittest.TestCase):
Expand Down

0 comments on commit c7e649f

Please sign in to comment.