Skip to content

Commit 07c675a

Browse files
committed
ipad fix
1 parent 8d61928 commit 07c675a

1 file changed

Lines changed: 18 additions & 14 deletions

File tree

src/test/python/test_helloworld.py

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
import unittest
2-
import helloworld
3-
4-
class TestHelloWorld(unittest.TestCase):
5-
6-
def setUp(self):
7-
pass
8-
9-
def tearDown(self):
10-
pass
11-
12-
13-
def testStr(self):
14-
self.assertEquals(helloworld.getHelloWorld(), "Hello World!")
1+
import sys
2+
3+
sys.path.append('../../main/python')
4+
5+
import unittest
6+
import helloworld
7+
8+
class TestHelloWorld(unittest.TestCase):
9+
10+
def setUp(self):
11+
pass
12+
13+
def tearDown(self):
14+
pass
15+
16+
17+
def testStr(self):
18+
self.assertEquals(helloworld.getHelloWorld(), "Hello World!")

0 commit comments

Comments
 (0)