diff --git a/libbeat/tests/system/test_monitoring.py b/libbeat/tests/system/test_monitoring.py index 25f5df647c0..73767e24c7c 100644 --- a/libbeat/tests/system/test_monitoring.py +++ b/libbeat/tests/system/test_monitoring.py @@ -272,10 +272,6 @@ def get_beat_state(self): url = "http://localhost:5066/state" return requests.get(url).json() -<<<<<<< HEAD -======= - ->>>>>>> Adding system test def random_string(self, size): char_pool = string.ascii_letters + string.digits return ''.join(random.choice(char_pool) for i in range(size))