| Index: remoting/host/policy_watcher_unittest.cc
|
| diff --git a/remoting/host/policy_watcher_unittest.cc b/remoting/host/policy_watcher_unittest.cc
|
| index 1147988bf3f5e168d619d0dda73f9f30a332dd42..7df7c7d772b94dbc1f2c5a54abdd9eef91db4439 100644
|
| --- a/remoting/host/policy_watcher_unittest.cc
|
| +++ b/remoting/host/policy_watcher_unittest.cc
|
| @@ -674,14 +674,14 @@ TEST_F(PolicyWatcherTest, SchemaTypeCheck) {
|
| const policy::Schema string_schema =
|
| schema->GetKnownProperty("RemoteAccessHostDomain");
|
| EXPECT_TRUE(string_schema.valid());
|
| - EXPECT_EQ(string_schema.type(), base::Value::Type::TYPE_STRING);
|
| + EXPECT_EQ(string_schema.type(), base::Value::Type::STRING);
|
|
|
| // And check one, random "boolean" policy to see if the type propagated
|
| // correctly from policy_templates.json file.
|
| const policy::Schema boolean_schema =
|
| schema->GetKnownProperty("RemoteAccessHostRequireCurtain");
|
| EXPECT_TRUE(boolean_schema.valid());
|
| - EXPECT_EQ(boolean_schema.type(), base::Value::Type::TYPE_BOOLEAN);
|
| + EXPECT_EQ(boolean_schema.type(), base::Value::Type::BOOLEAN);
|
| }
|
|
|
| } // namespace remoting
|
|
|