We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2cb30f commit 5c771faCopy full SHA for 5c771fa
1 file changed
tests/test_coverup_133.py
@@ -26,8 +26,8 @@ def cleanup_scalene():
26
27
def test_get_line_info(cleanup_scalene):
28
# Test the get_line_info method to ensure it covers the missing lines
29
- line_info_gen = Scalene.get_line_info("dummy_file.py")
30
- line_info = next(line_info_gen)
+ line_info_list = Scalene.get_line_info("dummy_file.py")
+ line_info = line_info_list[0]
31
assert isinstance(line_info, tuple)
32
assert isinstance(line_info[0], list)
33
assert isinstance(line_info[1], int)
0 commit comments