removing debug statements.

This commit is contained in:
Will Charczuk 2016-07-17 22:37:54 -07:00
parent 98c46b62d2
commit f661cfc8c1

View File

@ -83,7 +83,6 @@ func TestMACDSeries(t *testing.T) {
assert.NotEmpty(yvalues)
for index, vy := range yvalues {
fmt.Printf("delta @ %d actual: %0.9f expected: %0.9f\n", index, vy, macdExpected[index])
assert.InDelta(vy, macdExpected[index], emaDelta, fmt.Sprintf("delta @ %d actual: %0.9f expected: %0.9f", index, vy, macdExpected[index]))
}
}