Skip to content

Commit

Permalink
Adjust expectation to match behavior.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 2, 2024
1 parent c534165 commit d9aa41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distutils/tests/test_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_extension_init(self):
ext = Extension('name', ['file1', 'file2'])
assert ext.sources == ['file1', 'file2']
ext = Extension('name', [Path('file1'), Path('file2')])
assert ext.sources == ['file1', 'file2']
assert ext.sources == [Path('file1'), Path('file2')]

# others arguments have defaults
for attr in (
Expand Down

0 comments on commit d9aa41a

Please sign in to comment.