Sort metrics before comparing in graphite test

This commit is contained in:
Daniel Nelson 2017-09-05 12:50:01 -07:00
parent 7f71b10080
commit 16edaa0ae9
1 changed files with 2 additions and 0 deletions

View File

@ -212,6 +212,8 @@ func TestSerializeValueBoolean(t *testing.T) {
fmt.Sprintf("localhost.enabled.cpu0.us-west-2.cpu 1 %d", now.Unix()),
fmt.Sprintf("localhost.disabled.cpu0.us-west-2.cpu 0 %d", now.Unix()),
}
sort.Strings(mS)
sort.Strings(expS)
assert.Equal(t, expS, mS)
}