Skip to content

Commit f95ddab

Browse files
committed
update test
1 parent b6a3a97 commit f95ddab

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Math-Matrix-Tests/PMMatrixTest.class.st

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,8 @@ PMMatrixTest >> testRowWiseSubstractionWith [
765765
vector := #( 1 2 3 ) asPMVector.
766766
expected := PMMatrix rows: #( #( 0 0 0 ) #( 4 4 4 ) ).
767767

768-
self assert: (matrix rowWiseSubstractionWith: vector) equals: expected
768+
self assert: (matrix rowWiseSubstractionWith: vector) equals: expected.
769+
self assert: matrix -= vector equals: expected
769770
]
770771

771772
{ #category : 'comparing' }

0 commit comments

Comments
 (0)