Skip to content

Commit ae93a21

Browse files
authored
Update test_datatable.py
Remove outdated and incorrect type hint in test
1 parent 379aba4 commit ae93a21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/datatable/test_datatable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def test_datatable():
7979
result = pytester.runpytest("-s")
8080
result.assert_outcomes(passed=1)
8181

82-
datatables: List[DataTable] = collect_dumped_objects(result)
82+
datatables = collect_dumped_objects(result)
8383
assert datatables[0] == [
8484
["name", "email", "age"],
8585
["John", "[email protected]", "30"],

0 commit comments

Comments
 (0)