Skip to content

Commit 5201ee7

Browse files
Need WAY more parameters in the case file... We should probably do something about that...
1 parent 3c4b6dd commit 5201ee7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

toolchain/mfc/params_tests/test_definitions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ class TestParameterCounts(unittest.TestCase):
161161
"""Tests for expected parameter counts."""
162162

163163
def test_total_param_count(self):
164-
"""Total parameter count should be around 3400."""
164+
"""Total parameter count should be around 40000."""
165165
count = len(REGISTRY.all_params)
166-
self.assertGreater(count, 3000, "Too few parameters")
167-
self.assertLess(count, 4000, "Too many parameters")
166+
self.assertGreater(count, 39000, f"Too few parameters. Got {count}.")
167+
self.assertLess(count, 41000, f"Too many parameters. Got {count}.")
168168

169169
def test_log_params_count(self):
170170
"""Should have many LOG type parameters."""

0 commit comments

Comments
 (0)