From fd97bbf292bb6f0bb39eb8c22468607177bc48eb Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Fri, 22 Feb 2013 18:00:45 +0000 Subject: [PATCH] Fix Mac compile error. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1104 5089003a-bbd8-11dd-ad1f-f1f9622dbc98 --- tests/unittests/download_unittest.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unittests/download_unittest.cc b/tests/unittests/download_unittest.cc index ad5930da4..0755dda12 100644 --- a/tests/unittests/download_unittest.cc +++ b/tests/unittests/download_unittest.cc @@ -170,9 +170,9 @@ class DownloadTestHandler : public TestHandler { EXPECT_EQ(static_cast(sizeof(kTestContent)-1), download_item->GetTotalBytes()); EXPECT_EQ(0LL, download_item->GetReceivedBytes()); - EXPECT_EQ(0L, download_item->GetFullPath().length()); + EXPECT_EQ(0UL, download_item->GetFullPath().length()); EXPECT_STREQ(kTestDownloadUrl, download_item->GetURL().ToString().c_str()); - EXPECT_EQ(0L, download_item->GetSuggestedFileName().length()); + EXPECT_EQ(0UL, download_item->GetSuggestedFileName().length()); EXPECT_STREQ(kTestContentDisposition, download_item->GetContentDisposition().ToString().c_str()); EXPECT_STREQ(kTestMimeType, download_item->GetMimeType().ToString().c_str());