Cleans up test by removing unused function (#3969)

This commit is contained in:
Warren Fernandes 2018-03-15 02:59:19 -06:00 committed by Brian Brazil
parent e87c6c8b28
commit 58e2a31db8
1 changed files with 0 additions and 9 deletions

View File

@ -15,7 +15,6 @@ package rules
import (
"context"
"fmt"
"math"
"sort"
"testing"
@ -163,14 +162,6 @@ func TestAlertingRule(t *testing.T) {
}
}
func annotateWithTime(lines []string, ts time.Time) []string {
annotatedLines := []string{}
for _, line := range lines {
annotatedLines = append(annotatedLines, fmt.Sprintf(line, timestamp.FromTime(ts)))
}
return annotatedLines
}
func TestStaleness(t *testing.T) {
storage := testutil.NewStorage(t)
defer storage.Close()