Skip to content

Commit

Permalink
Fix the build broken due to auto-rebase (#696)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitryax authored Mar 25, 2020
1 parent 4d56b5d commit 9b61b53
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions translator/metrics/oc_to_otlp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ func TestOCToOTLP(t *testing.T) {
},
Timeseries: []*ocmetrics.TimeSeries{
{
StartTimestamp: unixnanoToTimestamp(unixnanos1),
StartTimestamp: internal.UnixNanoToTimestamp(unixnanos1),
Points: []*ocmetrics.Point{
{
Timestamp: unixnanoToTimestamp(unixnanos2),
Timestamp: internal.UnixNanoToTimestamp(unixnanos2),
Value: &ocmetrics.Point_Int64Value{
Int64Value: 123,
},
Expand Down Expand Up @@ -308,8 +308,8 @@ func TestOCToOTLP(t *testing.T) {
},
Int64DataPoints: []*otlpmetrics.Int64DataPoint{
{
StartTimeUnixNano: unixnanos1,
TimeUnixNano: unixnanos2,
StartTimeUnixNano: uint64(unixnanos1),
TimeUnixNano: uint64(unixnanos2),
Value: 123,
},
},
Expand Down

0 comments on commit 9b61b53

Please sign in to comment.