Skip to content

Commit

Permalink
missed using delayed offset
Browse files Browse the repository at this point in the history
  • Loading branch information
fredjoonpark committed Jan 8, 2025
1 parent 440d8de commit 5479db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion correctness/correctness_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ func TestSuccessWriteMultipleMetrics(t *testing.T) {
}

// Query for second metric
query2 := fmt.Sprintf(`%s{instance="%s", job="%s", test_id="%s"}[3s]`, name2, instance, job, testID)
query2 := fmt.Sprintf(`%s{instance="%s", job="%s", test_id="%s"}[%ds]`, name2, instance, job, testID, waitSeconds)
resp2, err := m.RemoteRead(ctx, query2)
if err != nil {
t.Fatalf("RemoteRead error: %v", err)
Expand Down

0 comments on commit 5479db2

Please sign in to comment.