Skip to content

Commit

Permalink
test_pyp: [minor] keep up with 3.9's ast.unparse improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed May 18, 2020
1 parent f716a84 commit 4bd31f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pyp.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def smallarray():
import numpy as np
from scipy.linalg import eigvals
assert sys.stdin.isatty() or not sys.stdin.read(), "The command doesn't process input, but input is present"
eigvals(np.array([[0.0, - 1.0], [1.0, 0.0]]))
eigvals(np.array([[0.0, -1.0], [1.0, 0.0]]))
""" # noqa
compare_scripts(
run_pyp(["--explain", "eigvals(np.array([[0., -1.], [1., 0.]])); pass"]), script2
Expand Down

2 comments on commit 4bd31f5

@Edipyanik
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi

@hauntsaninja
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello, can I help you? Feel free to open an issue, rather than commenting on a random commit

Please sign in to comment.