summaryrefslogtreecommitdiff
path: root/py/test/Slice/macros/Client.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2013-07-17 12:24:30 -0700
committerMark Spruiell <mes@zeroc.com>2013-07-17 12:24:30 -0700
commit972b4a46d012c5304b25363e0b5d56c70f6932dc (patch)
tree8df9e149fb198fc05c27b4ba779fdb334007ea5a /py/test/Slice/macros/Client.py
parentRemove generated file (diff)
downloadice-972b4a46d012c5304b25363e0b5d56c70f6932dc.tar.bz2
ice-972b4a46d012c5304b25363e0b5d56c70f6932dc.tar.xz
ice-972b4a46d012c5304b25363e0b5d56c70f6932dc.zip
ICE-5375 - minor edits
Diffstat (limited to 'py/test/Slice/macros/Client.py')
-rwxr-xr-xpy/test/Slice/macros/Client.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/py/test/Slice/macros/Client.py b/py/test/Slice/macros/Client.py
index 0913eb041ab..3504feddc6e 100755
--- a/py/test/Slice/macros/Client.py
+++ b/py/test/Slice/macros/Client.py
@@ -28,18 +28,18 @@ def test(b):
if not b:
raise RuntimeError('test assertion failed')
-try:
- sys.stdout.write("Testing Slice predefined macros... ")
+try:
+ sys.stdout.write("testing Slice predefined macros... ")
sys.stdout.flush()
-
+
d = Test.Default()
test(d.x == 10)
test(d.y == 10)
-
+
nd = Test.NoDefault()
test(nd.x != 10)
test(nd.y != 10)
-
+
c = Test.PythonOnly()
test(c.lang == "python")
test(c.version == Ice.intVersion())