From 4cade4f59bf3c8bfcd73a969b7aac7d7a9b5b80f Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Wed, 7 Feb 2024 12:55:14 +0000 Subject: [PATCH] Fix missed `salt.ext.tornado` occurrence --- tests/pytests/unit/test_minion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytests/unit/test_minion.py b/tests/pytests/unit/test_minion.py index cd1825c1153..160cb024986 100644 --- a/tests/pytests/unit/test_minion.py +++ b/tests/pytests/unit/test_minion.py @@ -36,7 +36,7 @@ def connect_master_mock(): self.calls = 0 self.exc = Exception - @salt.ext.tornado.gen.coroutine + @tornado.gen.coroutine def __call__(self, *args, **kwargs): self.calls += 1 if self.calls == 1: