diff --git a/test/routes/test_device.py b/test/routes/test_device.py
index 55c294eb449902e81ea1bac3afe01f41a8e28fd0..0b5fc81489a3a988dc05b66c29073ee028ca6b78 100644
--- a/test/routes/test_device.py
+++ b/test/routes/test_device.py
@@ -17,6 +17,7 @@ def test_router_provisioning(client):
     params = {
         'callback': callback_url,
         'dry_run': True,
+        'verb': 'deploy',
         'subscription': {
             'device': {
                 'ts_address': '127.0.0.1',
diff --git a/test/routes/test_ip_trunk.py b/test/routes/test_ip_trunk.py
index 20ac3c95e5ff00945f6a16b609878e9ac6b2bf22..77584d6e7a4fb3d1f25ea0494a0abd1fcda93959 100644
--- a/test/routes/test_ip_trunk.py
+++ b/test/routes/test_ip_trunk.py
@@ -108,6 +108,7 @@ def test_ip_trunk_provisioning(client):
         'callback': callback_url,
         'dry_run': True,
         'object': 'trunk_interface',
+        'verb': 'deploy',
         'subscription': _SUBSCRIPTION_OBJECT
     }
 
@@ -135,6 +136,7 @@ def test_ip_trunk_modification(client):
     params = {
         'callback': callback_url,
         'dry_run': True,
+        'verb': 'modify',
         'subscription': _SUBSCRIPTION_OBJECT,
         'old_subscription': _SUBSCRIPTION_OBJECT
     }
@@ -163,6 +165,7 @@ def test_ip_trunk_modification(client):
     params = {
         'callback': callback_url,
         'dry_run': True,
+        'verb': 'terminate',
         'subscription': _SUBSCRIPTION_OBJECT
     }