mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
tsdb/chunks/head_chunks_test.go: Fix typo (#7953)
tsdb/db_test.go: Fix typo Signed-off-by: Jorge Vallecillo <jorgevallecilloc@gmail.com>
This commit is contained in:
parent
b5b3bc34da
commit
7aa5fb01bf
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue