| commit | 1f037be780abd8105e6eb82c88831be4dcfb4a8a | [log] [tgz] |
|---|---|---|
| author | Mitch Rudominer <rudominer@chromium.org> | Tue Apr 05 16:14:00 2016 -0700 |
| committer | Mitch Rudominer <rudominer@chromium.org> | Tue Apr 05 16:14:00 2016 -0700 |
| tree | af7d303bc4ab068fc6e87ab4f7d1ddac07b3b444 | |
| parent | 0e03266c97428aa635dcbb53f83c134dd3c96588 [diff] [blame] |
Go system tests: Close proxy and stub at the end of a test. Fixes=#743 R=viettrungluu@chromium.org Review URL: https://codereview.chromium.org/1861153002 .
diff --git a/mojo/go/tests/regression_test.go b/mojo/go/tests/regression_test.go index 47c056c..e948f78 100644 --- a/mojo/go/tests/regression_test.go +++ b/mojo/go/tests/regression_test.go
@@ -50,5 +50,7 @@ t.Fatal("proxy returned from the call before the stub sent the response") } v.mu.Unlock() + proxy.Close_Proxy() + stub.Close() } }