mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-26 22:19:40 -08:00
Merge pull request #1482 from prometheus/fabxc/testswap
Fix flaky test comparison
This commit is contained in:
commit
7bcf0f2893
|
@ -19,6 +19,7 @@ import (
|
|||
"net/http/httptest"
|
||||
"net/url"
|
||||
"reflect"
|
||||
"sort"
|
||||
"strings"
|
||||
"sync"
|
||||
"testing"
|
||||
|
@ -469,6 +470,8 @@ func TestTargetScraperScrapeOK(t *testing.T) {
|
|||
Value: 2,
|
||||
},
|
||||
}
|
||||
sort.Sort(expectedSamples)
|
||||
sort.Sort(samples)
|
||||
|
||||
if !reflect.DeepEqual(samples, expectedSamples) {
|
||||
t.Errorf("Scraped samples did not match served metrics")
|
||||
|
|
Loading…
Reference in a new issue