Merge pull request #4184 from MaciekPytel/fix_ut
Skipping metrics tests added in #4022
This commit is contained in:
commit
389cfd2e18
|
|
@ -24,12 +24,14 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestDisabledPerNodeGroupMetrics(t *testing.T) {
|
func TestDisabledPerNodeGroupMetrics(t *testing.T) {
|
||||||
|
t.Skip("Registering metrics multiple times causes panic. Skipping until the test is fixed to not impact other tests.")
|
||||||
RegisterAll(false)
|
RegisterAll(false)
|
||||||
assert.False(t, nodesGroupMinNodes.IsCreated())
|
assert.False(t, nodesGroupMinNodes.IsCreated())
|
||||||
assert.False(t, nodesGroupMaxNodes.IsCreated())
|
assert.False(t, nodesGroupMaxNodes.IsCreated())
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestEnabledPerNodeGroupMetrics(t *testing.T) {
|
func TestEnabledPerNodeGroupMetrics(t *testing.T) {
|
||||||
|
t.Skip("Registering metrics multiple times causes panic. Skipping until the test is fixed to not impact other tests.")
|
||||||
RegisterAll(true)
|
RegisterAll(true)
|
||||||
assert.True(t, nodesGroupMinNodes.IsCreated())
|
assert.True(t, nodesGroupMinNodes.IsCreated())
|
||||||
assert.True(t, nodesGroupMaxNodes.IsCreated())
|
assert.True(t, nodesGroupMaxNodes.IsCreated())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue