diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-07 11:52:21 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-07 18:32:47 +0100 |
commit | 20addfa358e4f72b9f0c25d48c1e3ecfc08a68b2 (patch) | |
tree | e3a9258764f03f3c1d720495910e78dd0c3b6c3b /tests | |
parent | Docs (diff) | |
download | synapse-20addfa358e4f72b9f0c25d48c1e3ecfc08a68b2.tar.xz |
Change Cache to not use *args in its interface
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test__base.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/storage/test__base.py b/tests/storage/test__base.py index 8fa305d18a..abee2f631d 100644 --- a/tests/storage/test__base.py +++ b/tests/storage/test__base.py @@ -42,12 +42,12 @@ class CacheTestCase(unittest.TestCase): self.assertEquals(self.cache.get("foo"), 123) def test_invalidate(self): - self.cache.prefill("foo", 123) - self.cache.invalidate("foo") + self.cache.prefill(("foo",), 123) + self.cache.invalidate(("foo",)) failed = False try: - self.cache.get("foo") + self.cache.get(("foo",)) except KeyError: failed = True @@ -141,7 +141,7 @@ class CacheDecoratorTestCase(unittest.TestCase): self.assertEquals(callcount[0], 1) - a.func.invalidate("foo") + a.func.invalidate(("foo",)) yield a.func("foo") @@ -153,7 +153,7 @@ class CacheDecoratorTestCase(unittest.TestCase): def func(self, key): return key - A().func.invalidate("what") + A().func.invalidate(("what",)) @defer.inlineCallbacks def test_max_entries(self): @@ -193,7 +193,7 @@ class CacheDecoratorTestCase(unittest.TestCase): a = A() - a.func.prefill("foo", ObservableDeferred(d)) + a.func.prefill(("foo",), ObservableDeferred(d)) self.assertEquals(a.func("foo").result, d.result) self.assertEquals(callcount[0], 0) |