SIENTIAPDE-1478

Fix spelling errors in poller behavior parameters in prepare_worker.py and remove redundant endpoint references in test_api.py
This commit is contained in:
vitor-aignosi
2026-01-21 15:42:59 -03:00
parent 276fe6f623
commit 53213bf7f1
2 changed files with 12 additions and 16 deletions

View File

@@ -135,7 +135,6 @@ async def test_write_pi_web_api_data_success(mock_dataframe, api, base_input_dat
'Timestamp': '2024-01-01T00:00:00+00:00',
'Value': 0.75,
},
endpoint='https://test-pi-server.com/piwebapi',
metadata=metadata['metadata'],
),
call(
@@ -144,7 +143,6 @@ async def test_write_pi_web_api_data_success(mock_dataframe, api, base_input_dat
'Timestamp': '2024-01-01T00:00:00+00:00',
'Value': 0.95,
},
endpoint='https://test-pi-server.com/piwebapi',
metadata=metadata['metadata'],
),
]
@@ -245,7 +243,6 @@ async def test_write_pi_web_api_data_empty_tags(mock_dataframe, api, base_input_
'Timestamp': '2024-01-01T00:00:00+00:00',
'Value': 0.75,
},
endpoint='https://test-pi-server.com/piwebapi',
metadata=metadata['metadata'],
),
call(
@@ -254,7 +251,6 @@ async def test_write_pi_web_api_data_empty_tags(mock_dataframe, api, base_input_
'Timestamp': '2024-01-01T00:00:00+00:00',
'Value': 0.95,
},
endpoint='https://test-pi-server.com/piwebapi',
metadata=metadata['metadata'],
),
]