Skip to content
Snippets Groups Projects
Commit b2aada6a authored by ulif's avatar ulif
Browse files

Use dict in options test.

As we will start to do real things with the options passed in, we need
a real (options) dict also in other tests of `RealDiceRandomSource`.
parent 44aa926c
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,7 @@ class TestRealDiceRandomSource(object):
def test_options_are_stored(self):
# options passed-in are stored with RealDiceRandomSource instances
options = "fake_options"
options = dict(fake=1)
src = RealDiceRandomSource(options)
assert src.options is options
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment