Skip to content

Commit baa4bc5

Browse files
committed
refactor
1 parent 3d6c851 commit baa4bc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/polynomial/tests/test_printing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def test_polynomial_str_domains(self):
175175
assert_equal(res, tgt)
176176

177177
res = str(poly.Polynomial([0, 1], domain=[1, 2]))
178-
tgt = '0.0 + 1.0 (-3.0 + 2.0*x)'
178+
tgt = '0.0 + 1.0 (-3.0 + 2.0x)'
179179
assert_equal(res, tgt)
180180

181181
class TestLinebreaking:

0 commit comments

Comments
 (0)