Skip to content

Commit

Permalink
fix testcase for ConfigManager
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasmatyassy committed Sep 26, 2024
1 parent f4fe97a commit d709119
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_CodonUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ def test_config_manager(self):
)
config.set(
"ambiguous_aminoacid_map_override",
{"R": ["A", "G"]}
{"X": ["A", "G"]}
)
self.assertEqual(
config.get("ambiguous_aminoacid_map_override"),
{"R": ["A", "G"]}
{"X": ["A", "G"]}
)
config.update({
"ambiguous_aminoacid_behavior": "raise_error",
Expand Down

0 comments on commit d709119

Please sign in to comment.