summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-09-23 11:56:51 +0200
committerGuido Günther <agx@sigxcpu.org>2016-09-23 12:06:44 +0200
commitaef088dea5c1a93806927e2b1d7a4a7d87127c3a (patch)
tree75c2909525649d8ed3abac10cb07aa8f06c91878
parent4d3b85c54bef1ca6bf50dd5e9d7fb42177a48951 (diff)
tests/test_systemd.py: flake8 clean
-rw-r--r--tests/test_systemd.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_systemd.py b/tests/test_systemd.py
index 0559ccc..7615497 100644
--- a/tests/test_systemd.py
+++ b/tests/test_systemd.py
@@ -19,12 +19,13 @@ import unittest
from mock import patch
from whatmaps.systemd import Systemd
-from whatmaps.process import Process
+
class Process(object):
def __init__(self, pid):
self.pid = pid
+
class TestSystemd(unittest.TestCase):
def test_is_init(self):
"""Check if we create a systemd object if systemd is the init system in use"""