Fixed batch param testing

Change-Id: I2022cec3ce0cdee6acbdf04edee0bd6a1df53af8
diff --git a/src/com/mirantis/mk/Salt.groovy b/src/com/mirantis/mk/Salt.groovy
index 59a9123..d71d2dd 100644
--- a/src/com/mirantis/mk/Salt.groovy
+++ b/src/com/mirantis/mk/Salt.groovy
@@ -64,7 +64,7 @@
         'expr_form': target.type,
     ]
 
-    if(batch != null && (batch > 0 || (batch instanceof String && batch.contains("%")))){
+    if(batch != null && ( (batch instanceof Integer && batch > 0) || (batch instanceof String && batch.contains("%")))){
         data['client']= "local_batch"
         data['batch'] = batch
     }