From b252fe841771a6dcfc22d305f154ee45e7a1901a Mon Sep 17 00:00:00 2001 From: Serge Stinckwich Date: Sun, 23 Nov 2025 00:53:12 +0800 Subject: [PATCH] Remove PMtestVectorTest>>testVectorCloseTo I propose to remove ``PMtestVectorTest>>testVectorCloseTo``, as it doesn't make that much sense and the test is failing also. --- src/Math-Vector-Tests/PMVectorTest.class.st | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Math-Vector-Tests/PMVectorTest.class.st b/src/Math-Vector-Tests/PMVectorTest.class.st index 822e25e..42d090c 100644 --- a/src/Math-Vector-Tests/PMVectorTest.class.st +++ b/src/Math-Vector-Tests/PMVectorTest.class.st @@ -187,13 +187,6 @@ PMVectorTest >> testTensorProduct [ self assert: (b tensorProduct: a) equals: c transpose ] -{ #category : #tests } -PMVectorTest >> testVectorCloseTo [ - self assert: (#(1.00001 2.00005) asPMVector closeTo: #(1.00005 2.00001) asPMVector). - self assert: #(1.00001 2.00005) asPMVector closeTo: #(1.00005 2.00001) asPMVector. "Double check that the TestAsserter >> #assert:closeTo: functions properly here." - self deny: (#(1.00001 2.00007) asPMVector closeTo: #(1.00007 2.00001) asPMVector) -] - { #category : #tests } PMVectorTest >> testVectorCloseToPrecision [ | u v |