summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPhilippe Nunes <philippe.nunes@linux.intel.com>2012-09-06 16:38:47 +0200
committerDenis Kenzior <denkenz@gmail.com>2012-09-11 23:27:14 -0500
commitc0a4b69e7e716a694c4e9b3c9247c885ec982f94 (patch)
treeaedb4517e396d52efa6e4e387b4a28942ba28dbb /test
parente0e037539a72c6b6b03b8e1ffdbe5eb70b3a813d (diff)
downloadofono-c0a4b69e7e716a694c4e9b3c9247c885ec982f94.tar.bz2
test: iconId value is not a printable character
Diffstat (limited to 'test')
-rwxr-xr-xtest/list-calls9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/list-calls b/test/list-calls
index 53124dc1..2332b500 100755
--- a/test/list-calls
+++ b/test/list-calls
@@ -24,7 +24,8 @@ for path, properties in modems:
print " [ %s ]" % (path)
for key in properties.keys():
- val = str(properties[key])
- print " %s = %s" % (key, val)
-
- print
+ if key == 'Icon':
+ print " %s = %d" % (key, properties[key])
+ else:
+ val = str(properties[key])
+ print " %s = %s" % (key, val)