Commit e1e33240 authored by scoder's avatar scoder Committed by GitHub

Merge pull request #1684 from jwilk/pyximport-test-indent

Fix bad indentation in a pyximport test
parents 0d1f1c80 ba8560e4
...@@ -20,7 +20,7 @@ def test(): ...@@ -20,7 +20,7 @@ def test():
hello_file = os.path.join(tempdir, "hello.pyx") hello_file = os.path.join(tempdir, "hello.pyx")
open(hello_file, "w").write("x = 1; print x; before = 'before'\n") open(hello_file, "w").write("x = 1; print x; before = 'before'\n")
import hello import hello
assert hello.x == 1 assert hello.x == 1
time.sleep(1) # sleep to make sure that new "hello.pyx" has later time.sleep(1) # sleep to make sure that new "hello.pyx" has later
# timestamp than object file. # timestamp than object file.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment