From 203b4c9040e3ac96015424ad4f52c7f84b6ce9bc Mon Sep 17 00:00:00 2001 From: Jared Baas <150296891+jarbaas@users.noreply.github.com> Date: Mon, 23 Feb 2026 11:52:38 -0500 Subject: [PATCH] Update test_compute_dist_general.py Added documentation to test_hello() function --- tests/test_compute_dist_general.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_compute_dist_general.py b/tests/test_compute_dist_general.py index acbcff5..75f9892 100644 --- a/tests/test_compute_dist_general.py +++ b/tests/test_compute_dist_general.py @@ -2,6 +2,10 @@ import pandas as pd def test_hello(): + """ + Test to determine if hello_there returns the appropriate message for the provided argument. + Raises AssertionError if computed result does not match expectation. + """ expected_result = "Hello, there, BIOINF 576!" computed_result = m.hello_there("BIOINF 576") print(computed_result)