diff options
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()) |