new unittests
[pywienerlinien] / gotovienna / tests / realtime.py
index d7cf44a..a0c514c 100644 (file)
@@ -1,22 +1,22 @@
 import unittest
 import sys
 import os
-sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
+sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))
 
 from gotovienna.realtime import *
 
 parser = ITipParser()
 
 class ParseTest(unittest.TestCase):
-    
+
     def test_lines(self):
         lines = parser.lines
         self.assertTrue(type(lines) == dict)
         self.assertTrue(lines)
-    
+
     def test_stations(self):
         lines = parser.lines
-        
+
         s = []
         for line in lines:
             s.append(parser.get_stations(line[0]))