Skip to content

Commit c381955

Browse files
0x1AE7FBethanyG
authored andcommitted
Fix typo
Changed "neutrinos" (line 34) to "neutrons"
1 parent b5ddf11 commit c381955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/concept/meltdown-mitigation/conditionals_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_is_criticality_balanced(self):
3131
# pylint: disable=assignment-from-no-return
3232
actual_result = is_criticality_balanced(temp, neutrons_emitted)
3333
failure_message = (f'Expected {expected} but returned {actual_result} '
34-
f'with T={temp} and neutrinos={neutrons_emitted}')
34+
f'with T={temp} and neutrons={neutrons_emitted}')
3535
self.assertEqual(actual_result, expected, failure_message)
3636

3737
@pytest.mark.task(taskno=2)

0 commit comments

Comments
 (0)