Skip to content

Commit f7e3d9a

Browse files
committed
update tests, fix error print bug
1 parent b60e8e5 commit f7e3d9a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gophernotes_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ func TestRun_QuickFix_evaluated_but_not_used(t *testing.T) {
4343
noError(t, err)
4444

4545
codes := []string{
46-
//`[]byte("")`,
47-
//`make([]int, 0)`,
46+
`[]byte("")`,
47+
`make([]int, 0)`,
4848
`1+1`,
49-
//`func() {}`,
49+
`func() {}`,
5050
`(4 & (1 << 1))`,
5151
`1`,
5252
}

internal/repl/repl.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -398,10 +398,10 @@ func (s *Session) Eval(in string) (string, bytes.Buffer, error) {
398398
if st.ExitStatus() == 2 {
399399
debugf("got exit status 2, popping out last input")
400400
s.restoreMainBody()
401+
runErr = nil
401402
}
402403
}
403404
}
404-
errorf("%s", runErr.Error())
405405
}
406406

407407
// Cleanup the session file.

0 commit comments

Comments
 (0)