Skip to content

Commit

Permalink
use correct path: tests/lib (not test/lib)
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Mar 26, 2013
1 parent 89a0852 commit de0fecf
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion tests/arguments.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/assertions.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/basic.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/dataless.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/exceptions.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/external.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/function.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/label.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/lite/arguments.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/lite/basic.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/lite/exceptions.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/lite/semicolons.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/markers.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/semicolons.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/standard.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/testml-lite.yaml
Expand Up @@ -2,7 +2,7 @@ source_testml_dir: ../../testml-tml
local_testml_dir: ./testml
test_file_template: |
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')
from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/testml.yaml
Expand Up @@ -2,7 +2,7 @@ source_testml_dir: ../../testml-tml
local_testml_dir: ./testml
test_file_template: |
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')
from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/truth.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down
2 changes: 1 addition & 1 deletion tests/types.py
@@ -1,5 +1,5 @@
import sys
sys.path.append('./test/lib')
sys.path.append('./tests/lib')

from testml import TestML
from testml_bridge import TestMLBridge
Expand Down

0 comments on commit de0fecf

Please sign in to comment.