Skip to content

Commit

Permalink
Merge pull request #73 from WernerK/development
Browse files Browse the repository at this point in the history
DualNumberTest>>testRaisedTo made compatible with pharo7
  • Loading branch information
SergeStinckwich committed Jul 14, 2018
2 parents 8ac659a + 5c54904 commit f49c36c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ DualNumberTest >> testRaisedTo [
self assertEquality: (three raisedTo: 2) and: three squared.
self assertEquality: (three raisedTo: 0) and: onec.
self assertEquality: ((three + one) raisedTo: 1/2) and: (PMDualNumber value: 2 eps: (1/2)).
self assertEquality: ((three + one) raisedTo: 3/2) and: (PMDualNumber value: 8 eps: 6).
self assert: (((three + one) raisedTo: 3/2) equalsTo: (PMDualNumber value: 8 eps: 6)).
self assertEquality: (zero raisedTo: 1.4)and:zeroc.
a:=2 raisedTo: three.
self assert: ((a value)equalsTo: 8) .
Expand Down

0 comments on commit f49c36c

Please sign in to comment.