[components] Delete unnecessary capability path strings

Now that we use the Injector API for breakpoints, we don't
need to explicitly specify the strings corresponding to capability
paths. Injectors have Markers that have associated names from which
a capability path can automatically be derived. This CL deletes a couple
of strings that specify explicit capability paths.

Change-Id: I918fe9dd221418400faf84c5cbb654c57bb9fcf0
diff --git a/src/sys/component_manager/tests/hub/hub_report_capability.rs b/src/sys/component_manager/tests/hub/hub_report_capability.rs
index a0ee610..d1e037b 100644
--- a/src/sys/component_manager/tests/hub/hub_report_capability.rs
+++ b/src/sys/component_manager/tests/hub/hub_report_capability.rs
@@ -10,8 +10,6 @@
     std::{collections::HashMap, sync::Arc},
 };
 
-pub static HUB_REPORT_SERVICE: &str = "/svc/fuchsia.test.hub.HubReport";
-
 #[derive(Debug)]
 pub enum HubReportEvent {
     DirectoryListing { listing: Vec<String>, responder: fhub::HubReportListDirectoryResponder },
diff --git a/src/sys/component_manager/tests/work_scheduler/work_scheduler_dispatch_reporter.rs b/src/sys/component_manager/tests/work_scheduler/work_scheduler_dispatch_reporter.rs
index b68b3e6..35bebbc 100644
--- a/src/sys/component_manager/tests/work_scheduler/work_scheduler_dispatch_reporter.rs
+++ b/src/sys/component_manager/tests/work_scheduler/work_scheduler_dispatch_reporter.rs
@@ -23,9 +23,6 @@
     },
 };
 
-pub static WORK_SCHEDULER_DISPATCH_REPORTER: &str =
-    "/svc/fuchsia.test.workscheduler.WorkSchedulerDispatchReporter";
-
 #[derive(Debug)]
 pub struct Timeout(Duration);
 
diff --git a/src/sys/component_manager/tests/work_scheduler/work_scheduler_integration_test.rs b/src/sys/component_manager/tests/work_scheduler/work_scheduler_integration_test.rs
index 9115d7a..91d1db0 100644
--- a/src/sys/component_manager/tests/work_scheduler/work_scheduler_integration_test.rs
+++ b/src/sys/component_manager/tests/work_scheduler/work_scheduler_integration_test.rs
@@ -5,22 +5,10 @@
 use {
     anyhow::Error,
     breakpoint_system_client::*,
-    fidl::endpoints::ServiceMarker,
-    fidl_fuchsia_test_workscheduler as fws,
     test_utils::*,
-    work_scheduler_dispatch_reporter::{
-        DispatchedEvent, WorkSchedulerDispatchReporter, WORK_SCHEDULER_DISPATCH_REPORTER,
-    },
+    work_scheduler_dispatch_reporter::{DispatchedEvent, WorkSchedulerDispatchReporter},
 };
 
-#[test]
-fn work_scheduler_dispatch_reporter_paths() {
-    assert_eq!(
-        format!("/svc/{}", fws::WorkSchedulerDispatchReporterMarker::NAME),
-        WORK_SCHEDULER_DISPATCH_REPORTER.to_string()
-    );
-}
-
 #[fuchsia_async::run_singlethreaded(test)]
 async fn basic_work_scheduler_test() -> Result<(), Error> {
     let root_component_url =