From: Marcel Holtmann Date: Sun, 20 Dec 2009 07:37:58 +0000 (-0800) Subject: Fix test script for listing service properties X-Git-Tag: 2.0_alpha~3000 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=acb0072937c2e3d880c4d062f98d40db95e791da;p=framework%2Fconnectivity%2Fconnman.git Fix test script for listing service properties --- diff --git a/test/list-services b/test/list-services index 107dba8..64439b5 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