diff --git a/tests/utils/data_extraction/bundesanzeiger_test.py b/tests/utils/data_extraction/bundesanzeiger_test.py
index 5e2ef33..91d5158 100644
--- a/tests/utils/data_extraction/bundesanzeiger_test.py
+++ b/tests/utils/data_extraction/bundesanzeiger_test.py
@@ -163,7 +163,23 @@ def test_extract_tables_from_reports() -> None:
def test_parse_tables_to_kpis() -> None:
report = """
-
+
+
+ Position |
+
+
+ a) Umlaufvermögen |
+
+
+
+
+ Position |
+ Test |
+
+
+ 4711 |
+ 4711 |
+
Möge die Macht mir dir sein
@@ -199,6 +215,24 @@ def test_parse_tables_to_kpis() -> None:
4711 |
+
+
+
+ Position |
+ Betrag in |
+
+
+ Hallo |
+ € |
+
+
+
+
+ I. Schulden |
+ 0,12 |
+
+
+
"""
ba = Bundesanzeiger()
@@ -207,4 +241,5 @@ def test_parse_tables_to_kpis() -> None:
"Umlaufvermögen": 12130.0,
"EBIT": 1123000.0,
"Jahresüberschuss": 4130120.0,
+ "Schulden": 0.12,
}