diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/analysis/depgraph.py | 2 | ||||
| -rw-r--r-- | test/core/utils.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/analysis/depgraph.py b/test/analysis/depgraph.py index b532080b..211671a4 100644 --- a/test/analysis/depgraph.py +++ b/test/analysis/depgraph.py @@ -168,7 +168,7 @@ DD2.cache[DEPNODES_0[4]] = set(DEPNODES_0[5:9]) assert DD2.cache != DD0.cache -print " [+] Test dictionnary equality" +print " [+] Test dictionary equality" DNA = DependencyNode(LBL2, A, 0, next(STEP_COUNTER)) DNB = DependencyNode(LBL1, B, 1, next(STEP_COUNTER)) DNC = DependencyNode(LBL1, C, 0, next(STEP_COUNTER), True) 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" |