Skip to content

Commit cddaf91

Browse files
committed
fix(test results): make binary bars wider
1 parent f9e7476 commit cddaf91

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

testgen/ui/views/test_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ def render_binary_chart(data: pd.DataFrame, **params: dict) -> None:
734734
legend_labels = params.get("legend", {}).get("labels") or {"0": "0", "1": "1"}
735735

736736
history["test_start"] = history["test_date"].apply(datetime.fromisoformat)
737-
history["test_end"] = history["test_start"].apply(lambda start: start + timedelta(seconds=30))
737+
history["test_end"] = history["test_start"].apply(lambda start: start + timedelta(seconds=60))
738738
history["formatted_test_date"] = history["test_date"].apply(lambda date_str: datetime.fromisoformat(date_str).strftime("%I:%M:%S %p, %d/%m/%Y"))
739739
history["result_measure_with_status"] = history.apply(lambda row: f"{legend_labels[str(int(row['result_measure']))]} ({row['result_status']})", axis=1)
740740

0 commit comments

Comments
 (0)