We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e029904 commit 38666d6Copy full SHA for 38666d6
1 file changed
hawkular/metrics_test.py
@@ -94,7 +94,8 @@ def test_gauge_creation(self):
94
{'tags': {'units': 'bytes', 'env': 'qa'},
95
'id': 'test.create.gauge.3', 'dataRetention': 90, 'type': 'gauge', 'tenantId': self.test_tenant}]
96
97
- self.assertEqual(m, expect) # Did it?
+ for e in expect:
98
+ self.assertIn(e, m)
99
100
# Lets try creating a duplicate metric
101
md4 = self.client.create_metric_definition(MetricType.Gauge, id_name.format('1'))
0 commit comments