Skip to content

Commit b533bb5

Browse files
Pulling back some changes to run.go
1 parent 40c65fe commit b533bb5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/gorepo/run.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -427,10 +427,9 @@ type test struct {
427427

428428
tempDir string
429429
err error
430-
431-
// GOPHERJS: Skipping expectFail, see initExpectFail in go/test/run.go
432430
}
433431

432+
// startTest
434433
func startTest(dir, gofile string) *test {
435434
t := &test{
436435
dir: dir,
@@ -473,7 +472,7 @@ func (t *test) goDirName() string {
473472
}
474473

475474
func goDirFiles(longdir string) (filter []os.DirEntry, err error) {
476-
files, dirErr := os.ReadDir(longdir) // GOPHERJS: Updated to not use deprecated ioutil.ReadDir
475+
files, dirErr := os.ReadDir(longdir)
477476
if dirErr != nil {
478477
return nil, dirErr
479478
}

0 commit comments

Comments
 (0)