diff --git a/src/Math-Tests-Complex/PMComplexNumberTest.class.st b/src/Math-Tests-Complex/PMComplexNumberTest.class.st index dfa9363a..95c377f4 100644 --- a/src/Math-Tests-Complex/PMComplexNumberTest.class.st +++ b/src/Math-Tests-Complex/PMComplexNumberTest.class.st @@ -644,7 +644,7 @@ PMComplexNumberTest >> testRaisedToFractionalIndex [ z := 1 / 2 + (3 sqrt / 2) i. "Here, we appeal to de Moivre's theorem to compute the expected answer" expected := 3 sqrt / 2 + (1 / 2) i. - self assert: (z raisedTo: 1 / 2) equals: expected + self assert: (z raisedTo: 1 / 2) closeTo: expected ] { #category : #'testing - mathematical functions' }