summaryrefslogtreecommitdiff
path: root/test/list-services
diff options
context:
space:
mode:
Diffstat (limited to 'test/list-services')
-rwxr-xr-xtest/list-services5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/list-services b/test/list-services
index 107dba8c..64439b57 100755
--- a/test/list-services
+++ b/test/list-services
@@ -6,10 +6,7 @@ def extract_values(values):
val = "{"
for key in values.keys():
val += " " + key + "="
- if key in ["MTU"]:
- val += int(values[key])
- else:
- val += str(values[key])
+ val += str(values[key])
val += " }"
return val