Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit a76caef

Browse files
authored
Comment out TestRawInput
This test is causing too many Travis failures. Will re-enable when #282 is addressed.
1 parent 470f74c commit a76caef

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

runtime/builtin_types_test.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,8 @@ func TestBuiltinSetAttr(t *testing.T) {
471471
}
472472
}
473473

474-
func TestRawInput(t *testing.T) {
474+
// TODO(corona10): Re-enable once #282 is addressed.
475+
/*func TestRawInput(t *testing.T) {
475476
fun := wrapFuncForTest(func(f *Frame, s string, args ...*Object) (*Object, *BaseException) {
476477
// Create a fake Stdin for input test.
477478
stdinFile, w, err := os.Pipe()
@@ -523,7 +524,7 @@ func TestRawInput(t *testing.T) {
523524
}
524525
}
525526
526-
}
527+
}*/
527528

528529
func newTestIndexObject(index int) *Object {
529530
indexType := newTestClass("Index", []*Type{ObjectType}, newStringDict(map[string]*Object{

0 commit comments

Comments
 (0)