From 1aacfbd891d5868b81b2c19f5f80a2a56b3b1d10 Mon Sep 17 00:00:00 2001 From: Shiwani Mishra Date: Wed, 8 Apr 2026 00:19:34 +0530 Subject: [PATCH] fix: correct expected tags value in test_dbNodeFromNode The test expected tags="1,2" but dbNodeFromCode joins the input list ["111-111", "222-222"] with commas, producing "111-111,222-222". The expected value in the test was wrong. --- application/tests/db_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/tests/db_test.py b/application/tests/db_test.py index 43dd1f00b..0d2966ed8 100644 --- a/application/tests/db_test.py +++ b/application/tests/db_test.py @@ -1083,7 +1083,7 @@ def test_dbNodeFromNode(self) -> None: name="ccc", description="c2", link="https://example.com/code/hyperlink", - tags="1,2", + tags="111-111,222-222", ntype=defs.Credoctypes.Code.value, ), }