Fix services/network.sky test

mojo_shell can't handle loading the same DLL from two different URLs.  The
extra trailing slash was causing us to load the network_service DLL twice.

R=ojan@chromium.org, eseidel@chromium.org

Review URL: https://codereview.chromium.org/687703002
This commit is contained in:
Adam Barth 2014-10-28 09:55:58 -07:00
parent c32433111b
commit 2328807e06
2 changed files with 1 additions and 3 deletions

View File

@ -10,5 +10,3 @@ crbug.com/1 mutation-observer/weak-callback-gc-crash.sky [ Skip ]
# We need to land the new inspector backend
Bug(abarth) inspector [ Skip ]
Bug(abarth) services/network.sky [ Crash ]

View File

@ -11,7 +11,7 @@ describe('Mojo network_service', function() {
it('should be able to fetch text files', function(done) {
var netServiceHandle = internals.connectToService(
"mojo://network_service//", "mojo::NetworkService");
"mojo://network_service/", "mojo::NetworkService");
var netConnection = new connection.Connection(
netServiceHandle,
net.NetworkService.stubClass,