Skip to content

Commit 6dfada6

Browse files
committed
removed try/catch and fallback to default sample data
1 parent a09adab commit 6dfada6

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

python/tests/concept/test_parametrized_examples.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -165,13 +165,6 @@ class TestParametrizeFromFile:
165165
def load_csv_data() -> list[tuple[str, str, int]]:
166166
"""Load test data from CSV file."""
167167
csv_path = Path(__file__).parent / "test_data.csv"
168-
if not csv_path.exists():
169-
# Return sample data if file doesn't exist
170-
return [
171-
("test", "TEST", 4),
172-
("hello", "HELLO", 5),
173-
("world", "WORLD", 5),
174-
]
175168

176169
with open(csv_path) as f:
177170
reader = csv.reader(f)

0 commit comments

Comments
 (0)