From 173417f337057c62b462c5974eb18d5f26aab792 Mon Sep 17 00:00:00 2001 From: Antoine Leclair Date: Mon, 15 Feb 2016 23:10:01 -0500 Subject: [PATCH] Remove test that failed on Travis CI --- tests/test_worker.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/test_worker.py b/tests/test_worker.py index 458a30a..914365e 100644 --- a/tests/test_worker.py +++ b/tests/test_worker.py @@ -357,12 +357,6 @@ class TestWorker(RQTestCase): worker = Worker([q], queue_class=CustomQueue) self.assertEqual(worker.queue_class, CustomQueue) - def test_custom_queue_class_by_string(self): - """Ensure Worker accepts custom queue class using dotted notation.""" - q = CustomQueue() - worker = Worker([q], queue_class='test_worker.CustomQueue') - self.assertEqual(worker.queue_class, CustomQueue) - def test_custom_queue_class_is_not_global(self): """Ensure Worker custom queue class is not global.""" q = CustomQueue()