Skip to content

Commit

Permalink
chore: add field values
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Nov 2, 2023
1 parent e1f109b commit 8c5ed18
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions influxdb3/point_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,4 +190,6 @@ func TestPoint_SetTimestamp(t *testing.T) {
p := NewPoint("test", nil, nil, time.Unix(60, 70))
p.SetTimestamp(time.Unix(60, 80))
assert.Equal(t, time.Unix(60, 80), p.Values.Timestamp)
p.SetTimestampWithEpoch(99)
assert.Equal(t, time.Unix(0, 99), p.Values.Timestamp)
}

0 comments on commit 8c5ed18

Please sign in to comment.