A copy / paste fix in misc.random service... :) (0.21.4)

This commit is contained in:
Johannes Findeisen 2023-02-27 12:25:35 +01:00
commit 4571fc232b

View file

@ -10,10 +10,10 @@ from linspector.service import Service
def create(configuration, environment, log):
return DummyService(configuration, environment, log)
return RandomService(configuration, environment, log)
class DummyService(Service):
class RandomService(Service):
"""
This is a service that produces random data and status results. It is only used for testing.
"""