Skip to content

Commit 8b6e7f0

Browse files
removed unwanted changes
Signed-off-by: Vigneshwaran-Selvaraj_adi <vigneshwaran.selvaraj@analog.com>
1 parent 07b7f68 commit 8b6e7f0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

nisystemlink/clients/testmonitor/utilities/_dataframe_utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def __normalize_status(
108108
"""Normalizes the status field for a data entries.
109109
110110
Args:
111-
data: Dictionaries containing status information.
111+
data: Dictionary containing status information.
112112
113113
"""
114114
status = data.get("status", {})

tests/testmonitor/test_testmonitor_dataframe_utilities.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def results() -> List[Result]:
7777
file_ids=[uuid.uuid1().hex],
7878
status_type_summary={StatusType.PASSED: 0, StatusType.FAILED: 1},
7979
workspace=uuid.uuid1().hex,
80-
)
80+
),
8181
]
8282

8383
return results
@@ -390,6 +390,7 @@ def test__convert_steps_to_dataframe__with_missing_fields(
390390
pd.testing.assert_frame_equal(
391391
steps_dataframe, expected_steps_dataframe, check_dtype=True
392392
)
393+
393394
def test__convert_steps_to_dataframe_with_callback__returns_dataframe_with_valid_measurement(
394395
self, mock_steps_data: List[Step]
395396
):

0 commit comments

Comments
 (0)