[web_test] Remove field from link

The name field was removed from links. Remove this to unblock the
rollers.

TEST=CQ

Change-Id: I2ea90a8dc311d371c655b73896415f57fb490b43
diff --git a/runtime/web_view/tests/web_view_provider_test_module.cc b/runtime/web_view/tests/web_view_provider_test_module.cc
index 9178bc4..04be687 100644
--- a/runtime/web_view/tests/web_view_provider_test_module.cc
+++ b/runtime/web_view/tests/web_view_provider_test_module.cc
@@ -56,7 +56,6 @@
       input_url_link->Set(nullptr, std::move(buf));
 
       fuchsia::modular::IntentParameter p;
-      p.data.set_link_name(nullptr);
       intent.parameters->push_back(std::move(p));
     }
     // output: the input URL is echo'd back and received over the output link.
@@ -67,7 +66,6 @@
 
       fuchsia::modular::IntentParameter p;
       p.name = kOutputUrlLinkName;
-      p.data.set_link_name(kOutputUrlLinkName);
       intent.parameters->push_back(std::move(p));
     }