Skip to content

Commit e6e2f09

Browse files
sur5rgarw
authored andcommitted
There's no more python, just python3
1 parent fd9ddc7 commit e6e2f09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_asyncio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class TestAsyncYateProgram(unittest.TestCase):
1111
def test_async_yate_program(self):
1212
this_dir = os.path.dirname(__file__)
1313
test_script = os.path.join(this_dir, "asyncio_min.py")
14-
p = subprocess.Popen(["python", test_script], stdin=PIPE, stdout=PIPE, stderr=PIPE)
14+
p = subprocess.Popen(["python3", test_script], stdin=PIPE, stdout=PIPE, stderr=PIPE)
1515
install_message = p.stdout.readline().strip()
1616
self.assertEqual(b"%%>install:100:chan.notify", install_message)
1717
p.stdin.write(b"%%<install:100:chan.notify:true\n")

0 commit comments

Comments
 (0)