summaryrefslogtreecommitdiffstats
path: root/test/Platform.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Platform.py')
-rw-r--r--test/Platform.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Platform.py b/test/Platform.py
index 94961fb..b0afe2e 100644
--- a/test/Platform.py
+++ b/test/Platform.py
@@ -35,7 +35,7 @@ print "'%s'" % env['PROGSUFFIX']
assert env['SHELL'] == 'sh'
Platform('os2')(env)
print "'%s'" % env['PROGSUFFIX']
-Platform('posix')(env)
+env.Platform('posix')
print "'%s'" % env['PROGSUFFIX']
Platform('win32')(env)
print "'%s'" % env['PROGSUFFIX']
@@ -48,7 +48,7 @@ Platform('cygwin')(env)
print "'%s'" % env['LIBSUFFIX']
Platform('os2')(env)
print "'%s'" % env['LIBSUFFIX']
-Platform('posix')(env)
+env.Platform('posix')
print "'%s'" % env['LIBSUFFIX']
Platform('win32')(env)
print "'%s'" % env['LIBSUFFIX']