File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def test_get_canonical_version_raises(version):
23
23
def test_self_consistent_unordered (version ):
24
24
list_path = f"lists/{ stdlib_list .get_canonical_version (version )} .txt"
25
25
file = resources .files ("stdlib_list" ) / list_path
26
- modules = frozenset (file .read_text (encoding = ' utf-8' ).splitlines ())
26
+ modules = frozenset (file .read_text (encoding = " utf-8" ).splitlines ())
27
27
28
28
for mod_name in modules :
29
29
assert stdlib_list .in_stdlib (mod_name , version )
@@ -35,7 +35,7 @@ def test_self_consistent_unordered(version):
35
35
def test_self_consistent_ordered (version ):
36
36
list_path = f"lists/{ stdlib_list .get_canonical_version (version )} .txt"
37
37
file = resources .files ("stdlib_list" ) / list_path
38
- modules = list (file .read_text (encoding = ' utf-8' ).splitlines ())
38
+ modules = list (file .read_text (encoding = " utf-8" ).splitlines ())
39
39
40
40
for mod_name in modules :
41
41
assert stdlib_list .in_stdlib (mod_name , version )
You can’t perform that action at this time.
0 commit comments