From 4f7701230105791123257375b569433533c814c5 Mon Sep 17 00:00:00 2001 From: Carsten Skov Date: Sat, 28 Oct 2023 23:25:26 +0200 Subject: [PATCH] Changed number of inserts from 500 to 50 --- tests/test_influx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_influx.py b/tests/test_influx.py index a29fb14..adf2e66 100644 --- a/tests/test_influx.py +++ b/tests/test_influx.py @@ -25,7 +25,7 @@ def test_insert_data_in_influx(): bucket = "iconnmonseries" iconn_reg = IConnMonnRegister(token=token, org=org, url=url, bucket=bucket) - for value in range(500): + for value in range(50): iconn_reg.register_point( host="127.0.0.1", ttl=64, response_time=0.101, status=True )