diff --git a/lib/math_test.go b/lib/math_test.go index 8015e5297e..fdb963ecde 100644 --- a/lib/math_test.go +++ b/lib/math_test.go @@ -1,14 +1,16 @@ -package lib +package lib_test import ( "testing" + + "github.com/hashicorp/consul/lib" ) func TestMathMaxInt(t *testing.T) { tests := [][3]int{{1, 2, 2}, {-1, 1, 1}, {2, 0, 2}} for i, _ := range tests { expected := tests[i][2] - actual := MaxInt(tests[i][0], tests[i][1]) + actual := lib.MaxInt(tests[i][0], tests[i][1]) if expected != actual { t.Fatalf("in iteration %d expected %d, got %d", i, expected, actual) } @@ -19,7 +21,7 @@ func TestMathMinInt(t *testing.T) { tests := [][3]int{{1, 2, 1}, {-1, 1, -1}, {2, 0, 0}} for i, _ := range tests { expected := tests[i][2] - actual := MinInt(tests[i][0], tests[i][1]) + actual := lib.MinInt(tests[i][0], tests[i][1]) if expected != actual { t.Fatalf("in iteration %d expected %d, got %d", i, expected, actual) }