Commit bddb13d4 authored by Péter Szilágyi's avatar Péter Szilágyi

jsre: fix #1876, sleep too short on a slow test server

parent e3f36d97
...@@ -85,7 +85,7 @@ func TestNatto(t *testing.T) { ...@@ -85,7 +85,7 @@ func TestNatto(t *testing.T) {
if err != nil { if err != nil {
t.Errorf("expected no error, got %v", err) t.Errorf("expected no error, got %v", err)
} }
time.Sleep(time.Millisecond * 10) time.Sleep(100 * time.Millisecond)
val, err := jsre.Run("msg") val, err := jsre.Run("msg")
if err != nil { if err != nil {
t.Errorf("expected no error, got %v", err) t.Errorf("expected no error, got %v", err)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment