Update Beginner-Tutorial-Rules.md

Closing another parenthesis
This commit is contained in:
Tonalmictli 2023-04-10 00:52:07 -07:00 committed by GitHub
parent a75119c965
commit 0632780689
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -585,7 +585,7 @@ class TestEvAdventureRuleEngine(BaseEvenniaTest):
def test_roll(self, mock_randint):
mock_randint.return_value = 4
self.assertEqual(self.roll_engine.roll("1d6", 4))
self.assertEqual(self.roll_engine.roll("2d6", 2 * 4)
self.assertEqual(self.roll_engine.roll("2d6"), 2 * 4)
# test of the other rule methods below ...
```