Skip to content

Commit d3826b6

Browse files
committed
Fix assert arg order
1 parent 6bd6129 commit d3826b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/bulk_write_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ func TestPutEntitiesErrors(t *testing.T) {
421421
{Method: "Val", Metric: metrics.LatencyMs, IntVal: 0},
422422
}
423423
fixLatencyMetric(t, 150, expectMetrics, server.metricsrec.Called)
424-
assert.Equal(t, server.metricsrec.Called, expectMetrics)
424+
assert.Equal(t, expectMetrics, server.metricsrec.Called)
425425

426426
// ----------------------------------------------------------------------
427427
// No patch (empty payload)

0 commit comments

Comments
 (0)