Skip to content

Commit

Permalink
fixing day 14 error tolerances to avoid intermittent failures
Browse files Browse the repository at this point in the history
  • Loading branch information
vaskoz committed Sep 11, 2018
1 parent a2ee72e commit e09e4cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions day14/problem_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ var testcases = []struct {
delta float64
}{
{100000, 3.1415, 0.1},
{10000, 3.1415, 0.1},
{1000, 3.1415, 0.1},
{10000, 3.1415, 0.2},
{1000, 3.1415, 0.5},
}

func TestEstimatePi(t *testing.T) {
Expand Down

0 comments on commit e09e4cc

Please sign in to comment.