From b2aada6aa53f30e3940da903448db2c64976e297 Mon Sep 17 00:00:00 2001
From: ulif <uli@gnufix.de>
Date: Wed, 11 May 2016 22:16:10 +0200
Subject: [PATCH] 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`.
---
 tests/test_random_sources.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_random_sources.py b/tests/test_random_sources.py
index c101bce..97cbcfc 100644
--- a/tests/test_random_sources.py
+++ b/tests/test_random_sources.py
@@ -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
 
-- 
GitLab