~chicharreros/magicicada-protocol/trunk

« back to all changes in this revision

Viewing changes to magicicadaprotocol/tests/test_request.py

  • Committer: Magicicada Bot
  • Author(s): Natalia
  • Date: 2018-04-18 18:02:04 UTC
  • mfrom: (172.1.1 change-python-namespace)
  • Revision ID: magicicada_bot-20180418180204-m3zeeggez78h0wq7
[r=facundo] - Renamed python module to magicicadaprotocol, removing the need of the namespace package "ubuntuone".

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
from twisted.python.failure import Failure
39
39
from twisted.trial.unittest import TestCase as TwistedTestCase
40
40
 
41
 
from ubuntuone.storageprotocol import errors, protocol_pb2
42
 
from ubuntuone.storageprotocol.request import (
 
41
from magicicadaprotocol import errors, protocol_pb2
 
42
from magicicadaprotocol.request import (
43
43
    RequestHandler, Request, RequestResponse)
44
44
 
45
45