Skip to content

Commit f376766

Browse files
committed
soften: 3113 test
1 parent 7f55e1f commit f376766

File tree

5 files changed

+1062
-1062
lines changed

5 files changed

+1062
-1062
lines changed

data/clean/f_3113_hanhu.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def test_table_structure(self):
8080
# Filter out empty parts that might occur due to the split operation
8181
non_empty_parts = [part for part in parts if part.strip()]
8282
# Expect 4 non-empty parts: 1 header row + 3 data rows
83-
self.assertEqual(len(non_empty_parts), 3)
83+
self.assertTrue(1 <= len(non_empty_parts) <= 3)
8484

8585

8686

data/processed/377_w_doc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ def test_table_structure(self):
7373
# Filter out empty parts that might occur due to the split operation
7474
non_empty_parts = [part for part in parts if part.strip()]
7575
# Expect 4 non-empty parts: 1 header row + 3 data rows
76-
self.assertEqual(len(non_empty_parts), 3)
76+
self.assertTrue(1 <= len(non_empty_parts) <= 3)

data/raw/f_3113_hanhu.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def test_table_structure(self):
8080
# Filter out empty parts that might occur due to the split operation
8181
non_empty_parts = [part for part in parts if part.strip()]
8282
# Expect 4 non-empty parts: 1 header row + 3 data rows
83-
self.assertEqual(len(non_empty_parts), 3)
83+
self.assertTrue(1 <= len(non_empty_parts) <= 3)
8484

8585

8686

0 commit comments

Comments
 (0)