diff options
author | Eddy Pedroni <epedroni@pm.me> | 2024-10-16 22:25:47 +0200 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2024-10-16 22:30:41 +0200 |
commit | 81949cce8b03703605b2b54d89f37e27617fa0d0 (patch) | |
tree | fc141b376806e1b4fc2f34cab2264c3517e47f97 /tests/scheduler_brutal_unittest.py | |
parent | 8dd549b560ec3b7b1ef0fa7a64f421ad4ab28a93 (diff) |
Expose index calculation is now quadratically weighted to avoid duplicates in the test
Diffstat (limited to 'tests/scheduler_brutal_unittest.py')
-rw-r--r-- | tests/scheduler_brutal_unittest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scheduler_brutal_unittest.py b/tests/scheduler_brutal_unittest.py index a87e5e9..4790016 100644 --- a/tests/scheduler_brutal_unittest.py +++ b/tests/scheduler_brutal_unittest.py @@ -26,7 +26,7 @@ def test_scheduling(): "9": [None, None, None], } - expected_priority = ["9", "6", "5", "7", "8", "4", "1", "3", "2", "0"] + expected_priority = ["9", "6", "5", "8", "7", "4", "1", "3", "2", "0"] uut = UUT(cards, state) |