missed one.

This commit is contained in:
Will Charczuk 2016-07-18 15:08:50 -07:00
parent 6d6778d729
commit bf690767f4

View File

@ -27,7 +27,7 @@ func TestBollingerBandSeries(t *testing.T) {
xvalues[x], y1values[x], y2values[x] = bbs.GetBoundedValue(x)
}
for x := bbs.GetWindowSize(); x < 100; x++ {
for x := bbs.GetPeriod(); x < 100; x++ {
assert.True(y1values[x] > y2values[x])
}
}