diff options
author | Victor Shyba <victor1984@riseup.net> | 2017-06-22 02:29:52 -0300 |
---|---|---|
committer | Victor Shyba <victor1984@riseup.net> | 2017-07-02 01:32:39 -0300 |
commit | b9a906aadbf9561cff76d406d89b644ee1f0e67a (patch) | |
tree | cb568b9b59b3de4d0ebcd96129667a5079c22d3b /testing/tests/server | |
parent | cbcc049737e26e30db8890e31d6b98725bdb3385 (diff) |
[style] fix naming from review
Diffstat (limited to 'testing/tests/server')
-rw-r--r-- | testing/tests/server/test_incoming_resource.py | 4 | ||||
-rw-r--r-- | testing/tests/server/test_incoming_server.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/testing/tests/server/test_incoming_resource.py b/testing/tests/server/test_incoming_resource.py index 81925580..e9148b4a 100644 --- a/testing/tests/server/test_incoming_resource.py +++ b/testing/tests/server/test_incoming_resource.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# test_blobs_resource_validation.py +# test_incoming_resource.py # Copyright (C) 2017 LEAP # # This program is free software: you can redistribute it and/or modify @@ -27,7 +27,7 @@ from uuid import uuid4 from mock import Mock -class BlobServerTestCase(unittest.TestCase): +class IncomingResourceTestCase(unittest.TestCase): def setUp(self): self.couchdb = Mock() diff --git a/testing/tests/server/test_incoming_server.py b/testing/tests/server/test_incoming_server.py index d0410520..afb0c970 100644 --- a/testing/tests/server/test_incoming_server.py +++ b/testing/tests/server/test_incoming_server.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# test_blobs_server.py +# test_incoming_server.py # Copyright (C) 2017 LEAP # # This program is free software: you can redistribute it and/or modify @@ -32,7 +32,7 @@ from test_soledad.util import CouchServerStateForTests from test_soledad.util import CouchDBTestCase -class BlobServerTestCase(CouchDBTestCase): +class IncomingServerTestCase(CouchDBTestCase): def setUp(self): self.state = CouchServerStateForTests(self.couch_url) |