Skip to content

Commit ce72cfd

Browse files
committed
cleanup
1 parent b0da369 commit ce72cfd

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

codeflash/discovery/discover_unit_tests.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ def get_function_to_test_map_for_file(
128128
test_file=Path(row[0]), test_class=row[4], test_function=row[5], test_type=TestType(int(row[6]))
129129
),
130130
position=CodePosition(line_no=row[7], col_no=row[8]),
131-
qualified_name_with_modules_from_root=qualified_name_with_modules_from_root,
132131
)
133132
function_to_test_map[qualified_name_with_modules_from_root].add(function_called_in_test)
134133

@@ -702,7 +701,6 @@ def process_test_files(
702701
test_type=test_func.test_type,
703702
),
704703
position=CodePosition(line_no=name.line, col_no=name.column),
705-
qualified_name_with_modules_from_root=qualified_name_with_modules_from_root,
706704
)
707705
)
708706
tests_cache.insert_test(

codeflash/models/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,6 @@ class FunctionCalledInTest:
363363
tests_in_file: TestsInFile
364364
position: CodePosition
365365

366-
367366
@dataclass(frozen=True)
368367
class CodePosition:
369368
line_no: int

0 commit comments

Comments
 (0)