From c01225520915e0f0f61df4da1921755d0f476047 Mon Sep 17 00:00:00 2001 From: Tim Greiser Date: Tue, 23 Aug 2016 22:25:16 -0700 Subject: [PATCH] Updated path to inf decimal library --- csvb.go | 2 +- csvb_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/csvb.go b/csvb.go index d6c8ce8..a2f4e52 100644 --- a/csvb.go +++ b/csvb.go @@ -7,7 +7,7 @@ import ( "github.com/oleiade/reflections" "io" "reflect" - "speter.net/go/exp/math/dec/inf" + "gopkg.in/inf.v0" "strconv" "strings" "time" diff --git a/csvb_test.go b/csvb_test.go index 2df8f33..782f738 100644 --- a/csvb_test.go +++ b/csvb_test.go @@ -4,7 +4,7 @@ import ( "bytes" "encoding/csv" "github.com/stretchr/testify/assert" - "speter.net/go/exp/math/dec/inf" + "gopkg.in/inf.v0" "testing" "time" )