diff options
author | Victor Shyba <victor1984@riseup.net> | 2017-05-12 03:51:00 -0300 |
---|---|---|
committer | Victor Shyba <victor1984@riseup.net> | 2017-05-12 03:51:00 -0300 |
commit | f9fbae0e6296382dd558ba12c1acc646447cc8cd (patch) | |
tree | 92b461e5ee79edf74bd84c9290803228cc20e043 /testing/tests/server/test__resource.py | |
parent | 6795f5ec9617afcded241efb328b396a83e77937 (diff) |
[refactor] make blobs resource backend configurable
- Resolves: #8804
Diffstat (limited to 'testing/tests/server/test__resource.py')
-rw-r--r-- | testing/tests/server/test__resource.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tests/server/test__resource.py b/testing/tests/server/test__resource.py index be02b5a1..1c0510b9 100644 --- a/testing/tests/server/test__resource.py +++ b/testing/tests/server/test__resource.py @@ -43,7 +43,7 @@ class SoledadResourceTestCase(unittest.TestCase): self.assertIsInstance(child, ServerInfo) def test_get_blobs_enabled(self): - blobs_resource = BlobsResource('/tmp') + blobs_resource = BlobsResource("filesystem", '/tmp') resource = SoledadResource( blobs_resource=blobs_resource, sync_pool=_pool) request = DummyRequest(['blobs']) |