Skip to content

Commit

Permalink
fix: update tests after merge of #839
Browse files Browse the repository at this point in the history
  • Loading branch information
mvertes committed Sep 9, 2020
1 parent d8e7bef commit 39f39f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interp/interp_eval_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -938,10 +938,10 @@ func TestConcurrentEvals(t *testing.T) {
interpr := interp.New(interp.Options{Stdout: pout})
interpr.Use(stdlib.Symbols)

if _, err := interpr.EvalPath("testdata/concurrent/hello1.go"); err != nil {
if _, err := interpr.EvalPath("testdata/concurrent/hello1.go", interp.NoTest); err != nil {
t.Fatal(err)
}
if _, err := interpr.EvalPath("testdata/concurrent/hello2.go"); err != nil {
if _, err := interpr.EvalPath("testdata/concurrent/hello2.go", interp.NoTest); err != nil {
t.Fatal(err)
}

Expand Down

0 comments on commit 39f39f0

Please sign in to comment.