summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2012-11-27 11:09:21 +0100
committerMarcel Holtmann <marcel@holtmann.org>2012-11-27 11:09:21 +0100
commite292f142ad660ca900b80e1b4ed357a664f00f5c (patch)
tree7d4bd5d832ba4db49b094a7af907c41983cca485 /test
parentc091a5c5e7b1bb74f0a9e0033e3027d373420a1e (diff)
downloadofono-e292f142ad660ca900b80e1b4ed357a664f00f5c.tar.bz2
test: Remove unneeded semicolons in STK test script
Diffstat (limited to 'test')
-rwxr-xr-xtest/test-stk-menu30
1 files changed, 15 insertions, 15 deletions
diff --git a/test/test-stk-menu b/test/test-stk-menu
index b95e528a..82d510ee 100755
--- a/test/test-stk-menu
+++ b/test/test-stk-menu
@@ -51,7 +51,7 @@ class StkAgent(dbus.service.Object):
def RequestSelection(self, title, icon, items, default):
print "Title: (%s)" % (title)
print "Icon: (%d)" % (icon)
- index = 0;
+ index = 0
for item in items:
print "%d. %s (icon: %d)" % (index, item[0], item[1])
index += 1
@@ -64,12 +64,12 @@ class StkAgent(dbus.service.Object):
elif select == 't':
raise EndSession("User wishes to terminate session")
else:
- return int(select);
+ return int(select)
@dbus.service.method("org.ofono.SimToolkitAgent",
in_signature="syb", out_signature="",
async_callbacks=("reply_func",
- "error_func"))
+ "error_func"))
def DisplayText(self, title, icon, urgent, reply_func, error_func):
print "DisplayText (%s)" % (title)
print "Icon: (%d)" % (icon)
@@ -107,7 +107,7 @@ class StkAgent(dbus.service.Object):
print "Hide typing: (%s)" % (hide_typing)
print "Enter characters, min: %d, max: %d:" % (min_chars,
max_chars)
- userin = raw_input("");
+ userin = raw_input("")
return userin
@@ -121,7 +121,7 @@ class StkAgent(dbus.service.Object):
print "Hide typing: (%s)" % (hide_typing)
print "Enter digits, min: %d, max: %d:" % (min_chars,
max_chars)
- userin = raw_input("'t' terminates, 'b' goes back:");
+ userin = raw_input("'t' terminates, 'b' goes back:")
if userin == 'b':
raise GoBack("User wishes to go back")
@@ -138,9 +138,9 @@ class StkAgent(dbus.service.Object):
key = raw_input("Enter Key (t, b):")
if key == 'b':
- raise GoBack("User wishes to go back");
+ raise GoBack("User wishes to go back")
elif key == 't':
- raise EndSession("User wishes to terminate session");
+ raise EndSession("User wishes to terminate session")
else:
return key
@@ -152,9 +152,9 @@ class StkAgent(dbus.service.Object):
key = raw_input("Enter Digit (t, b):")
if key == 'b':
- raise GoBack("User wishes to go back");
+ raise GoBack("User wishes to go back")
elif key == 't':
- raise EndSession("User wishes to terminate session");
+ raise EndSession("User wishes to terminate session")
else:
return key
@@ -166,9 +166,9 @@ class StkAgent(dbus.service.Object):
key = raw_input("Quick digit (0-9, *, #, t, b):")
if key == 'b':
- raise GoBack("User wishes to go back");
+ raise GoBack("User wishes to go back")
elif key == 't':
- raise EndSession("User wishes to terminate session");
+ raise EndSession("User wishes to terminate session")
else:
return key
@@ -180,9 +180,9 @@ class StkAgent(dbus.service.Object):
key = raw_input("Enter Confirmation (t, b, y, n):")
if key == 'b':
- raise GoBack("User wishes to go back");
+ raise GoBack("User wishes to go back")
elif key == 't':
- raise EndSession("User wishes to terminate session");
+ raise EndSession("User wishes to terminate session")
elif key == 'y':
return True
else:
@@ -196,7 +196,7 @@ class StkAgent(dbus.service.Object):
key = raw_input("Enter Confirmation (t, y, n):")
if key == 't':
- raise EndSession("User wishes to terminate session");
+ raise EndSession("User wishes to terminate session")
elif key == 'y':
return True
else:
@@ -276,7 +276,7 @@ class StkAgent(dbus.service.Object):
key = raw_input("Enter Confirmation (t, y, n):")
if key == 't':
- raise EndSession("User wishes to terminate session");
+ raise EndSession("User wishes to terminate session")
elif key == 'y':
return True
else: