From 7aa5fb01bf4c71f0a29490f75f45e39356f4bb2c Mon Sep 17 00:00:00 2001 From: Jorge Vallecillo Date: Sun, 20 Sep 2020 11:42:01 -0600 Subject: [PATCH] tsdb/chunks/head_chunks_test.go: Fix typo (#7953) tsdb/db_test.go: Fix typo Signed-off-by: Jorge Vallecillo --- tsdb/chunks/head_chunks_test.go | 2 +- tsdb/db_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tsdb/chunks/head_chunks_test.go b/tsdb/chunks/head_chunks_test.go index c32ead502..70ffaba59 100644 --- a/tsdb/chunks/head_chunks_test.go +++ b/tsdb/chunks/head_chunks_test.go @@ -175,7 +175,7 @@ func TestHeadReadWriter_Truncate(t *testing.T) { var timeToTruncate, timeToTruncateAfterRestart int64 addChunk := func() int { - mint := timeRange + 1 // Just after the the new file cut. + mint := timeRange + 1 // Just after the new file cut. maxt := timeRange + fileTimeStep - 1 // Just before the next file. // Write a chunks to set maxt for the segment. diff --git a/tsdb/db_test.go b/tsdb/db_test.go index 663fcd5ed..e1969c512 100644 --- a/tsdb/db_test.go +++ b/tsdb/db_test.go @@ -196,7 +196,7 @@ func TestDataAvailableOnlyAfterCommit(t *testing.T) { func TestNoPanicAfterWALCorrutpion(t *testing.T) { db := openTestDB(t, &Options{WALSegmentSize: 32 * 1024}, nil) - // Append until the the first mmaped head chunk. + // Append until the first mmaped head chunk. // This is to ensure that all samples can be read from the mmaped chunks when the WAL is corrupted. var expSamples []tsdbutil.Sample var maxt int64