Skip to content

Commit

Permalink
Fix test_build_ext errors
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Oct 23, 2023
1 parent cb479d8 commit 773e34c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setuptools/tests/test_build_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def preprocess(self, build_ext):
"foo.c": "#include <xxx-generate-compilation-error-if-not-preprocessed-xxx>\n",
"fooc.template": SIMPLE["foo.c"],
"fooh.template": "#define HELLO_WORLD 1\n",
"bar.c": '#include "foo.h"\n',
"bar.c": '#include "foo.h"\n' + SIMPLE["foo.c"].replace("foo", "bar"),
"setup.py": DALS(
"""
import os, shutil
Expand Down

0 comments on commit 773e34c

Please sign in to comment.