Skip to content

Commit

Permalink
👹 Feed the hobgoblins (delint).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 27, 2024
1 parent af7fcbb commit 630551a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion distutils/tests/test_sysconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ def test_customize_compiler(self):
comp = self.customize_compiler()
assert comp.exes['archiver'] == 'env_ar --env-arflags'
assert comp.exes['preprocessor'] == 'env_cpp --env-cppflags'
assert comp.exes['compiler'] == 'env_cc --env-cflags --env-cflags --env-cppflags'
assert (
comp.exes['compiler'] == 'env_cc --env-cflags --env-cflags --env-cppflags'
)
assert comp.exes['compiler_so'] == (
'env_cc --env-cflags --env-cflags --env-cppflags --sc-ccshared'
)
Expand Down

0 comments on commit 630551a

Please sign in to comment.