diff options
| author | Camille Mougey <commial@gmail.com> | 2016-01-30 22:54:31 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2016-01-30 22:54:31 +0100 |
| commit | 3672de7c319f39273cb7e34797cb928f424ff7c4 (patch) | |
| tree | b2b8f867dbec627940b2be9406ae87a009c731bf /test/core/utils.py | |
| parent | dbf10438741443d59b8db500905d3d110a34c73c (diff) | |
| parent | d1eaeba1aab93a918d858750e2cc11a7ea283fbd (diff) | |
| download | miasm-3672de7c319f39273cb7e34797cb928f424ff7c4.tar.gz miasm-3672de7c319f39273cb7e34797cb928f424ff7c4.zip | |
Merge pull request #314 from serpilliere/graph_ir_asm
Graph ir asm
Diffstat (limited to 'test/core/utils.py')
| -rw-r--r-- | test/core/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/utils.py b/test/core/utils.py index bf14df68..f7de6565 100644 --- a/test/core/utils.py +++ b/test/core/utils.py @@ -13,7 +13,7 @@ class TestUtils(unittest.TestCase): def logger(key): print "DELETE", key - # Create a 5/2 dictionnary + # Create a 5/2 dictionary bd = BoundedDict(5, 2, initialdata={"element": "value"}, delete_cb=logger) bd["element2"] = "value2" |