diff options
author | Mark Spruiell <mes@zeroc.com> | 2013-07-17 12:24:30 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2013-07-17 12:24:30 -0700 |
commit | 972b4a46d012c5304b25363e0b5d56c70f6932dc (patch) | |
tree | 8df9e149fb198fc05c27b4ba779fdb334007ea5a /py/test/Slice/macros/Client.py | |
parent | Remove generated file (diff) | |
download | ice-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-x | py/test/Slice/macros/Client.py | 10 |
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()) |