Skip to content

Commit f777c32

Browse files
committed
gopy: hardcode python2 for now in tests
This CL makes sure we are using python2 for the tests. Eventually, we'll have to test both.
1 parent 616ace6 commit f777c32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ func testPkgWithCFFI(t *testing.T, table pkg) {
162162
}
163163

164164
buf := new(bytes.Buffer)
165-
cmd = exec.Command("python", "./test.py")
165+
cmd = exec.Command("python2", "./test.py")
166166
cmd.Dir = workdir
167167
cmd.Stdin = os.Stdin
168168
cmd.Stdout = buf

0 commit comments

Comments
 (0)