Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1788)

Unified Diff: services/catalog/entry_unittest.cc

Issue 2440203002: Mojo: removing support for process-group. (Closed)
Patch Set: Synced Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/catalog/entry.cc ('k') | services/catalog/store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/catalog/entry_unittest.cc
diff --git a/services/catalog/entry_unittest.cc b/services/catalog/entry_unittest.cc
index 897b871c38982c2a01c1631893f2019b2299415b..639710bf28fc49dac4f4a8eed5a356018166aa47 100644
--- a/services/catalog/entry_unittest.cc
+++ b/services/catalog/entry_unittest.cc
@@ -56,14 +56,12 @@ class EntryTest : public testing::Test {
TEST_F(EntryTest, Simple) {
std::unique_ptr<Entry> entry = ReadEntry("simple", nullptr);
EXPECT_EQ("service:foo", entry->name());
- EXPECT_EQ(service_manager::GetNamePath(entry->name()), entry->qualifier());
EXPECT_EQ("Foo", entry->display_name());
}
TEST_F(EntryTest, Instance) {
std::unique_ptr<Entry> entry = ReadEntry("instance", nullptr);
EXPECT_EQ("service:foo", entry->name());
- EXPECT_EQ("bar", entry->qualifier());
EXPECT_EQ("Foo", entry->display_name());
}
@@ -71,7 +69,6 @@ TEST_F(EntryTest, ConnectionSpec) {
std::unique_ptr<Entry> entry = ReadEntry("connection_spec", nullptr);
EXPECT_EQ("service:foo", entry->name());
- EXPECT_EQ("bar", entry->qualifier());
EXPECT_EQ("Foo", entry->display_name());
service_manager::InterfaceProviderSpec spec;
service_manager::CapabilitySet capabilities;
« no previous file with comments | « services/catalog/entry.cc ('k') | services/catalog/store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698