diff options
Diffstat (limited to 'cpp/test/Slice/unicodePaths/test.py')
-rw-r--r-- | cpp/test/Slice/unicodePaths/test.py | 10 |
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"), |