summaryrefslogtreecommitdiff
path: root/tests/test-jsonrpc.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-08-25 10:26:40 -0700
committerBen Pfaff <blp@nicira.com>2010-08-25 14:55:48 -0700
commit991559357f6a03c3a5b70c053c8c2554aa8d5ee4 (patch)
tree8731002433c65ea41dbe94648c0e39737f666469 /tests/test-jsonrpc.c
parentd1b680c61626595b2777f4bf25997a9178acb60c (diff)
downloadopenvswitch-991559357f6a03c3a5b70c053c8c2554aa8d5ee4.tar.gz
Implement initial Python bindings for Open vSwitch database.
These initial bindings pass a few hundred of the corresponding tests for C implementations of various bits of the Open vSwitch library API. The poorest part of them is actually the Python IDL interface in ovs.db.idl, which has not received enough attention yet. It appears to work, but it doesn't yet support writes (transactions) and it is difficult to use. I hope to improve it as it becomes clear what semantics Python applications actually want from an IDL.
Diffstat (limited to 'tests/test-jsonrpc.c')
-rw-r--r--tests/test-jsonrpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-jsonrpc.c b/tests/test-jsonrpc.c
index f2d0568ed..e8edec064 100644
--- a/tests/test-jsonrpc.c
+++ b/tests/test-jsonrpc.c
@@ -319,7 +319,7 @@ do_notify(int argc OVS_UNUSED, char *argv[])
error = jsonrpc_send_block(rpc, msg);
if (error) {
- ovs_fatal(error, "could not send request");
+ ovs_fatal(error, "could not send notification");
}
jsonrpc_close(rpc);
}