diff options
Diffstat (limited to 'chrome/common/sandbox_mac_system_access_unittest.mm')
-rw-r--r-- | chrome/common/sandbox_mac_system_access_unittest.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/sandbox_mac_system_access_unittest.mm b/chrome/common/sandbox_mac_system_access_unittest.mm index 3ae41d7..382aa2c 100644 --- a/chrome/common/sandbox_mac_system_access_unittest.mm +++ b/chrome/common/sandbox_mac_system_access_unittest.mm @@ -67,11 +67,11 @@ void MacSandboxedClipboardTestCase::SetTestData(const char* test_data) { TEST_F(MacSandboxTest, ClipboardAccess) { NSPasteboard* pb = [NSPasteboard pasteboardWithUniqueName]; EXPECT_EQ([[pb types] count], 0U); - + std::string pasteboard_name = base::SysNSStringToUTF8([pb name]); EXPECT_TRUE(RunTestInAllSandboxTypes("MacSandboxedClipboardTestCase", pasteboard_name.c_str())); - + // After executing the test, the clipboard should still be empty. EXPECT_EQ([[pb types] count], 0U); } |