Implement initial Python bindings for Open vSwitch database.
[sliver-openvswitch.git] / tests / ovsdb-column.at
index 7dd55e4..b8d0939 100644 (file)
@@ -1,13 +1,13 @@
 AT_BANNER([OVSDB -- columns])
 
-OVSDB_CHECK_POSITIVE([ordinary column],
+OVSDB_CHECK_POSITIVE_CPY([ordinary column],
   [[parse-column mycol '{"type": "integer"}']],
   [[{"type":"integer"}]])
 
-OVSDB_CHECK_POSITIVE([immutable column],
+OVSDB_CHECK_POSITIVE_CPY([immutable column],
   [[parse-column mycol '{"type": "real", "mutable": false}']],
   [[{"mutable":false,"type":"real"}]])
 
-OVSDB_CHECK_POSITIVE([ephemeral column],
+OVSDB_CHECK_POSITIVE_CPY([ephemeral column],
   [[parse-column mycol '{"type": "uuid", "ephemeral": true}']],
   [[{"ephemeral":true,"type":"uuid"}]])