| Index: mojo/go/tests/application_impl_test.go
|
| diff --git a/mojo/go/tests/application_impl_test.go b/mojo/go/tests/application_impl_test.go
|
| index 5c8321fce625b4e12352e93dbf40b5d90467f2cf..791a11a709d328feabcc8432dc20c0bdf7452338 100644
|
| --- a/mojo/go/tests/application_impl_test.go
|
| +++ b/mojo/go/tests/application_impl_test.go
|
| @@ -111,11 +111,11 @@ type shellImpl struct {
|
| localURL string
|
| }
|
|
|
| -func (s *shellImpl) ConnectToApplication(URL string, services *sp.ServiceProvider_Request, exposedServices *sp.ServiceProvider_Pointer) error {
|
| +func (s *shellImpl) ConnectToApplication(URL string, services sp.ServiceProvider_Request) error {
|
| if URL != pairedURL(s.localURL) {
|
| return fmt.Errorf("invalid URL: want %v, got %v", pairedURL(s.localURL), URL)
|
| }
|
| - s.remoteApp.AcceptConnection(s.localURL, services, exposedServices, pairedURL(s.localURL))
|
| + s.remoteApp.AcceptConnection(s.localURL, pairedURL(s.localURL), services)
|
| return nil
|
| }
|
|
|
|
|