diff --git a/bar_chart.go b/bar_chart.go index d61f3db..d6986ec 100644 --- a/bar_chart.go +++ b/bar_chart.go @@ -2,13 +2,16 @@ package chart import ( "errors" - "fmt" "io" "math" "github.com/golang/freetype/truetype" ) +var ( + ErrZeroDataRange = errors.New("invalid data range; cannot be zero") +) + // BarChart is a chart that draws bars on a range. type BarChart struct { Title string @@ -118,7 +121,7 @@ func (bc BarChart) Render(rp RendererProvider, w io.Writer) error { canvasBox = bc.getDefaultCanvasBox() yr = bc.getRanges() if yr.GetMax()-yr.GetMin() == 0 { - return fmt.Errorf("invalid data range; cannot be zero") + return ErrZeroDataRange } yr = bc.setRangeDomains(canvasBox, yr) yf = bc.getValueFormatters() diff --git a/bar_chart_test.go b/bar_chart_test.go index e62ef83..81cf645 100644 --- a/bar_chart_test.go +++ b/bar_chart_test.go @@ -2,6 +2,7 @@ package chart import ( "bytes" + "errors" "math" "testing" @@ -43,7 +44,11 @@ func TestBarChartRenderZero(t *testing.T) { buf := bytes.NewBuffer([]byte{}) err := bc.Render(PNG, buf) - testutil.AssertNotNil(t, err) + if err != nil { + if !errors.Is(err, ErrZeroDataRange) { + t.Errorf("assertion failed; expected %v to equal %v", err, ErrZeroDataRange) + } + } } func TestBarChartProps(t *testing.T) {