From 931e0817e7589aadece40a8387c85af99a1f9c15 Mon Sep 17 00:00:00 2001 From: mwoss Date: Wed, 3 Apr 2024 00:12:05 +0200 Subject: [PATCH] Remove unneeded test --- decimal_test.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/decimal_test.go b/decimal_test.go index a371d63..0905ce8 100644 --- a/decimal_test.go +++ b/decimal_test.go @@ -3673,15 +3673,3 @@ func ExampleNewFromFloat() { //0.123123123123123 //-10000000000000 } - -func TestXDD(t *testing.T) { - d1 := NewFromFloat(4.0) - d2 := NewFromFloat(4.0) - res1 := d1.Pow(d2) - t.Log(res1.String()) // output: "16.0" - - d3 := NewFromFloat(5.0) - d4 := NewFromFloat(5.73) - res2 := d3.Pow(d4) - t.Log(res2.String()) // output: "10118.080371595015625" -}