diff options
Diffstat (limited to 'ppapi/proxy/plugin_dispatcher_unittest.cc')
-rw-r--r-- | ppapi/proxy/plugin_dispatcher_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/proxy/plugin_dispatcher_unittest.cc b/ppapi/proxy/plugin_dispatcher_unittest.cc index 83a5cf4..821ecad 100644 --- a/ppapi/proxy/plugin_dispatcher_unittest.cc +++ b/ppapi/proxy/plugin_dispatcher_unittest.cc @@ -62,10 +62,10 @@ TEST_F(PluginDispatcherTest, SupportsInterface) { RegisterTestInterface(PPP_INSTANCE_INTERFACE, &dummy_ppp_instance_interface); // Sending a request for a random interface should fail. - EXPECT_FALSE(IsInterfaceSupported("Random interface")); + EXPECT_FALSE(SupportsInterface("Random interface")); // Sending a request for a supported PPP interface should succeed. - EXPECT_TRUE(IsInterfaceSupported(PPP_INSTANCE_INTERFACE)); + EXPECT_TRUE(SupportsInterface(PPP_INSTANCE_INTERFACE)); } TEST_F(PluginDispatcherTest, PPBCreation) { |