From 237746705900cfa5e8e70ddc8a46add88421e78c Mon Sep 17 00:00:00 2001 From: Will Charczuk Date: Mon, 18 Jul 2016 15:49:34 -0700 Subject: [PATCH] fixing test. --- bollinger_band_series_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bollinger_band_series_test.go b/bollinger_band_series_test.go index f6b5d03..f1a6693 100644 --- a/bollinger_band_series_test.go +++ b/bollinger_band_series_test.go @@ -44,7 +44,7 @@ func TestBollingerBandLastValue(t *testing.T) { InnerSeries: s1, } - x, y1, y2 := bbs.GetLastBoundedValue() + x, y1, y2 := bbs.GetBoundedLastValue() assert.Equal(100.0, x) assert.Equal(101, math.Floor(y1)) assert.Equal(83, math.Floor(y2))