This commit is contained in:
Will Charczuk 2016-07-15 13:43:53 -07:00
parent 00ff859126
commit 296ed0fd3b

View File

@ -10,10 +10,10 @@ func TestGenerateGridLines(t *testing.T) {
assert := assert.New(t)
ticks := []Tick{
Tick{Value: 1.0, Label: "1.0"},
Tick{Value: 2.0, Label: "2.0"},
Tick{Value: 3.0, Label: "3.0"},
Tick{Value: 4.0, Label: "4.0"},
{Value: 1.0, Label: "1.0"},
{Value: 2.0, Label: "2.0"},
{Value: 3.0, Label: "3.0"},
{Value: 4.0, Label: "4.0"},
}
gl := GenerateGridLines(ticks, true)