Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
don't pass empty options
Browse files Browse the repository at this point in the history
  • Loading branch information
jaffee committed May 30, 2018
1 parent d4f17ef commit dc88b7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client_it_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func TestMain(m *testing.M) {
if err != nil {
panic(err)
}
testFrame, err = index.Frame("test-frame", &FrameOptions{})
testFrame, err = index.Frame("test-frame")
if err != nil {
panic(err)
}
Expand Down Expand Up @@ -1088,7 +1088,7 @@ func TestRangeFrame(t *testing.T) {

func TestCreateIntField(t *testing.T) {
client := getClient()
frame, _ := index.Frame("rangeframe-addfield", &FrameOptions{})
frame, _ := index.Frame("rangeframe-addfield")
err := client.EnsureFrame(frame)
if err != nil {
t.Fatal(err)
Expand Down

0 comments on commit dc88b7e

Please sign in to comment.