summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/tests/rpc_unittest.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/nova/tests/rpc_unittest.py b/nova/tests/rpc_unittest.py
index f4d7b4b28..e12a28fbc 100644
--- a/nova/tests/rpc_unittest.py
+++ b/nova/tests/rpc_unittest.py
@@ -67,17 +67,6 @@ class RpcTestCase(test.BaseTestCase):
except rpc.RemoteError as exc:
self.assertEqual(int(exc.value), value)
- def test_pass_object(self):
- """Test that we can pass objects through rpc"""
- class x():
- pass
- obj = x()
- x.foo = 'bar'
- x.baz = 100
-
- result = yield rpc.call('test', {"method": "echo",
- "args": {"value": obj}})
- print result
class TestReceiver(object):
"""Simple Proxy class so the consumer has methods to call