We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c4b6dd commit 5201ee7Copy full SHA for 5201ee7
1 file changed
toolchain/mfc/params_tests/test_definitions.py
@@ -161,10 +161,10 @@ class TestParameterCounts(unittest.TestCase):
161
"""Tests for expected parameter counts."""
162
163
def test_total_param_count(self):
164
- """Total parameter count should be around 3400."""
+ """Total parameter count should be around 40000."""
165
count = len(REGISTRY.all_params)
166
- self.assertGreater(count, 3000, "Too few parameters")
167
- self.assertLess(count, 4000, "Too many parameters")
+ self.assertGreater(count, 39000, f"Too few parameters. Got {count}.")
+ self.assertLess(count, 41000, f"Too many parameters. Got {count}.")
168
169
def test_log_params_count(self):
170
"""Should have many LOG type parameters."""
0 commit comments