From: Arnout Vandecappelle (Essensium/Mind) Date: Thu, 5 Dec 2019 23:32:34 +0000 (+0100) Subject: support/testing: test_python_django: add missing line X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=17638bc3ada60c7cedc71f4a546c7b75fae6113e;p=buildroot.git support/testing: test_python_django: add missing line flake8 complains with: test_python_django.py:25:1: E302 expected 2 blank lines, found 1 Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- diff --git a/support/testing/tests/package/test_python_django.py b/support/testing/tests/package/test_python_django.py index eb93d4fca9..6b31833a0f 100644 --- a/support/testing/tests/package/test_python_django.py +++ b/support/testing/tests/package/test_python_django.py @@ -22,6 +22,7 @@ class TestPythonDjango(TestPythonPackageBase): cmd = "netstat -ltn 2>/dev/null | grep 0.0.0.0:1234" self.assertRunOk(cmd) + class TestPythonPy3Django(TestPythonDjango): __test__ = True config = TestPythonDjango.config + \