diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-05-20 18:53:12 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-05-20 19:40:20 +0200 |
| commit | 32ebe81cf3e222b41b03b774ce59bee2e7ec923f (patch) | |
| tree | ae20bdad248b6946682738a3869c4e898e4e6bc8 /vm/vm_test.go | |
| parent | 2c9280d432039ad490051c3e1ba130ee268057a6 (diff) | |
pkg/repro: fix no output timeout
We duplicated the no output timeout in the repro package,
and it got out of sync. It's not 3 mins now, but 5 mins.
Remove the duplication and fix this.
Diffstat (limited to 'vm/vm_test.go')
| -rw-r--r-- | vm/vm_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm_test.go b/vm/vm_test.go index 702e2626e..e55cf2184 100644 --- a/vm/vm_test.go +++ b/vm/vm_test.go @@ -72,7 +72,7 @@ func (inst *testInstance) Close() { func init() { beforeContext = 200 tickerPeriod = 1 * time.Second - noOutputTimeout = 5 * time.Second + NoOutputTimeout = 5 * time.Second waitForOutputTimeout = 3 * time.Second ctor := func(env *vmimpl.Env) (vmimpl.Pool, error) { |
