We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdbe541 commit 507e276Copy full SHA for 507e276
tests/test_exporter.py
@@ -49,6 +49,9 @@ def test_cached_exporter(self):
49
e.config["metrics"] = generate_random_metric_config(100)
50
export2 = run(e.export())
51
self.assertEqual(export1, export2)
52
+ e.cache_time = 0
53
+ export3 = run(e.export())
54
+ self.assertNotEqual(export1, export3)
55
56
def test_global_labels(self):
57
"""Ensures that lables which are defined globally are applied to all metrics"""
0 commit comments