From 774f6489b11a8764a7e0998acf2c6243211b21a8 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Sun, 7 Feb 2021 12:18:04 -0500 Subject: [PATCH] Remove ellipsis from tests to make them pass on Python 2 --- tests/unit/containers/test_dynamic_py2_py3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/containers/test_dynamic_py2_py3.py b/tests/unit/containers/test_dynamic_py2_py3.py index da68dfd5..cfc59bc0 100644 --- a/tests/unit/containers/test_dynamic_py2_py3.py +++ b/tests/unit/containers/test_dynamic_py2_py3.py @@ -354,7 +354,7 @@ class SelfTests(unittest.TestCase): def test_self_attribute_implicit(self): class Container(containers.DeclarativeContainer): - ... + pass container = Container()