Skip to content

Commit c7b867f

Browse files
chore: fix sys path in pty tests
1 parent 997d0f6 commit c7b867f

6 files changed

Lines changed: 6 additions & 6 deletions

tests/t.pty/test.pty.006.terminal.03.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
import argparse
4545
from select import select
4646

47-
sys.path.append(os.path.join(sys.path[0],'../..'))
47+
sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk'))
4848
import TermTk as ttk
4949

5050
parser = argparse.ArgumentParser()

tests/t.pty/test.pty.006.terminal.04.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
import argparse
4545
from select import select
4646

47-
sys.path.append(os.path.join(sys.path[0],'../..'))
47+
sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk'))
4848
import TermTk as ttk
4949

5050
parser = argparse.ArgumentParser()

tests/t.pty/test.pty.006.terminal.05.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import os, sys, argparse
2626
from select import select
2727

28-
sys.path.append(os.path.join(sys.path[0],'../..'))
28+
sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk'))
2929
import TermTk as ttk
3030

3131
parser = argparse.ArgumentParser()

tests/t.pty/test.pty.006.terminal.06.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import os, sys, argparse
2626
from select import select
2727

28-
sys.path.append(os.path.join(sys.path[0],'../..'))
28+
sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk'))
2929
import TermTk as ttk
3030

3131
parser = argparse.ArgumentParser()

tests/t.pty/test.pty.006.terminal.07.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import os, sys, argparse
2626
from select import select
2727

28-
sys.path.append(os.path.join(sys.path[0],'../..'))
28+
sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk'))
2929
import TermTk as ttk
3030

3131
parser = argparse.ArgumentParser()

tests/t.pty/test.pty.006.terminal.08.getBuffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import os, sys, argparse
2626
from select import select
2727

28-
sys.path.append(os.path.join(sys.path[0],'../..'))
28+
sys.path.append(os.path.join(sys.path[0],'../../libs/pyTermTk'))
2929
import TermTk as ttk
3030

3131
parser = argparse.ArgumentParser()

0 commit comments

Comments
 (0)