We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05ba156 commit 4b7f888Copy full SHA for 4b7f888
src/Math-Tests-Polynomials/PMPolynomialTest.class.st
@@ -203,11 +203,11 @@ PMPolynomialTest >> testPolynomialNumberMultiplication [
203
{ #category : #'algebra - multiplication' }
204
PMPolynomialTest >> testPolynomialNumberMultiplicationInverse [
205
206
- | polynomial expected |
207
- polynomial := (PMPolynomial coefficients: #( 2 -3 1 )) * 2.
+ | product expected |
+ product := (PMPolynomial coefficients: #( 2 -3 1 )) * 2.
208
209
expected := PMPolynomial coefficients: #( 4 -6 2 ).
210
- self assert: polynomial equals: expected
+ self assert: product equals: expected
211
]
212
213
{ #category : #'algebra - subtraction' }
0 commit comments