Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
youngmit committed Sep 29, 2021
1 parent 687ba92 commit d3b4b28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions armi/settings/tests/test_settings.py
Expand Up @@ -78,8 +78,8 @@ def test_update(self):
with self.cs._unlock():
# grab the keys, and make sure they make some sense
keys = sorted(self.cs.keys())
self.assertEqual(len(keys), 146)
self.assertEqual(keys[:3], ["HCFcoretype", "Tin", "Tout"])
for key in {"HCFcoretype", "Tin", "Tout"}:
self.assertIn(key in keys)

# test an invalid update
d = {"aaba": 1, "aardvark": 2}
Expand Down

0 comments on commit d3b4b28

Please sign in to comment.