mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-27 14:39: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/http/httptest"
|
||||||
"net/url"
|
"net/url"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
|
@ -469,6 +470,8 @@ func TestTargetScraperScrapeOK(t *testing.T) {
|
||||||
Value: 2,
|
Value: 2,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
sort.Sort(expectedSamples)
|
||||||
|
sort.Sort(samples)
|
||||||
|
|
||||||
if !reflect.DeepEqual(samples, expectedSamples) {
|
if !reflect.DeepEqual(samples, expectedSamples) {
|
||||||
t.Errorf("Scraped samples did not match served metrics")
|
t.Errorf("Scraped samples did not match served metrics")
|
||||||
|
|
Loading…
Reference in a new issue