From 7ff09ff626d528d81c38b43fdc23d6a93bd58416 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 12 Dec 2024 11:21:40 +0900 Subject: [PATCH] Remove remaining functional test code for AMQP1 driver ... because the driver was already removed. Change-Id: Ia435111e26c63668fd2376addf5644c56888ea3a --- oslo_messaging/tests/functional/test_functional.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/oslo_messaging/tests/functional/test_functional.py b/oslo_messaging/tests/functional/test_functional.py index a3da986b2..81df6bb0f 100644 --- a/oslo_messaging/tests/functional/test_functional.py +++ b/oslo_messaging/tests/functional/test_functional.py @@ -11,7 +11,6 @@ # License for the specific language governing permissions and limitations # under the License. -import os import requests import subprocess import time @@ -517,12 +516,6 @@ class NotifyTestCase(utils.SkipIfNoTransportURL): def test_simple_batch(self): get_timeout = 3 batch_timeout = 2 - if self.notify_url.startswith("amqp:"): - backend = os.environ.get("AMQP1_BACKEND") - if backend == "qdrouterd": - # end-to-end acknowledgement with router intermediary - # sender pends until batch_size or timeout reached - self.skipTest("qdrouterd backend") if self.notify_url.startswith("kafka://"): get_timeout = 10 batch_timeout = 5