Skip to content

Commit

Permalink
fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
JetSquirrel committed Mar 23, 2024
1 parent fce0216 commit a49ece0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ func TestWriteMonitors(t *testing.T) {
}
}

func TestUpdateMonitors(t *testing.T) {
func TestUpdateMonitor(t *testing.T) {
loc, err := time.LoadLocation(timezone)
assert.Nil(t, err)
ts1 := time.Now().Add(-1 * time.Minute).UnixMilli()
Expand Down Expand Up @@ -487,7 +487,7 @@ func TestDeleteMonitors(t *testing.T) {
}
}

func TestCreateMonitors(t *testing.T) {
func TestWriteObjMonitors(t *testing.T) {
loc, err := time.LoadLocation(timezone)
assert.Nil(t, err)
ts1 := time.Now().Add(-1 * time.Minute).UnixMilli()
Expand Down Expand Up @@ -532,7 +532,7 @@ func TestCreateMonitors(t *testing.T) {
}
}

func TestUpdateObjMonitors(t *testing.T) {
func TestUpdateObjMonitor(t *testing.T) {
loc, err := time.LoadLocation(timezone)
assert.Nil(t, err)
ts1 := time.Now().Add(-1 * time.Minute).UnixMilli()
Expand Down Expand Up @@ -1054,7 +1054,7 @@ func TestStreamDelete(t *testing.T) {
}
}

func TestStreamCreate(t *testing.T) {
func TestStreamWriteObj(t *testing.T) {
loc, err := time.LoadLocation(timezone)
assert.Nil(t, err)
ts1 := time.Now().Add(-1 * time.Minute).UnixMilli()
Expand Down

0 comments on commit a49ece0

Please sign in to comment.