diff options
| author | Joseph Richey <joerichey94@gmail.com> | 2018-02-09 03:17:23 -0800 |
|---|---|---|
| committer | Joseph Richey <joerichey94@gmail.com> | 2018-02-09 03:56:46 -0800 |
| commit | 575618f02ea7ed3edc53b4bcd24ecbfc6ef00e77 (patch) | |
| tree | 1307c7cccaede948a53be45343d4df711eb508b3 /actions | |
| parent | 5d1eccd8db322cdcee7417d4e188329826cddf97 (diff) | |
dep: Run dep ensure
Diffstat (limited to 'actions')
| -rw-r--r-- | actions/hashing_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/hashing_test.go b/actions/hashing_test.go index d249d8b..2e212e9 100644 --- a/actions/hashing_test.go +++ b/actions/hashing_test.go @@ -43,10 +43,10 @@ func TestCostsSearch(t *testing.T) { t.Error(err) } - if actual*2 < target { + if actual*3 < target { t.Errorf("actual=%v is too small (target=%v)", actual, target) } - if target*2 < actual { + if target*3 < actual { t.Errorf("actual=%v is too big (target=%v)", actual, target) } } |