We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6a3a97 commit f95ddabCopy full SHA for f95ddab
1 file changed
src/Math-Matrix-Tests/PMMatrixTest.class.st
@@ -765,7 +765,8 @@ PMMatrixTest >> testRowWiseSubstractionWith [
765
vector := #( 1 2 3 ) asPMVector.
766
expected := PMMatrix rows: #( #( 0 0 0 ) #( 4 4 4 ) ).
767
768
- self assert: (matrix rowWiseSubstractionWith: vector) equals: expected
+ self assert: (matrix rowWiseSubstractionWith: vector) equals: expected.
769
+ self assert: matrix -= vector equals: expected
770
]
771
772
{ #category : 'comparing' }
0 commit comments