summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/unicodePaths/test.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-01-05 17:50:47 +0100
committerBenoit Foucher <benoit@zeroc.com>2017-01-05 17:50:47 +0100
commit486ebe5c7c2d768b884ae85c4fea2c692d0b4f29 (patch)
treea6b15265690e110370e6f1036680ed068d5cd3c7 /cpp/test/Slice/unicodePaths/test.py
parentFixed macOS PHP testing bug when running against binary distribution (diff)
downloadice-486ebe5c7c2d768b884ae85c4fea2c692d0b4f29.tar.bz2
ice-486ebe5c7c2d768b884ae85c4fea2c692d0b4f29.tar.xz
ice-486ebe5c7c2d768b884ae85c4fea2c692d0b4f29.zip
Fixed ICE-7478 - concurrent file access
Diffstat (limited to 'cpp/test/Slice/unicodePaths/test.py')
-rw-r--r--cpp/test/Slice/unicodePaths/test.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/Slice/unicodePaths/test.py b/cpp/test/Slice/unicodePaths/test.py
index 95923fc10c2..ad07f3b9855 100644
--- a/cpp/test/Slice/unicodePaths/test.py
+++ b/cpp/test/Slice/unicodePaths/test.py
@@ -33,11 +33,11 @@ class SliceUnicodePathsTestCase(ClientTestCase):
if os.path.exists(srcPath): shutil.rmtree(srcPath)
os.mkdir(srcPath)
- self.createFile("%s/Test.ice" % srcPath,
- ["module Test { ",
- "class Point{int x; int y; };",
- "interface Canvas{ void draw(Point p); };",
- "};"], "utf-8")
+ current.createFile("%s/Test.ice" % srcPath,
+ ["module Test { ",
+ "class Point{int x; int y; };",
+ "interface Canvas{ void draw(Point p); };",
+ "};"], "utf-8")
tests = [
("cpp", ["Test.cpp", "Test.h", "TestI.cpp", "TestI.h"], "--impl-c++11"),