diff -r 630d2f34d719 -r 07a122eea281 telephonyserverplugins/common_tsy/test/integration/src/cctsyintegrationtestmultibearerinteroperability.cpp --- a/telephonyserverplugins/common_tsy/test/integration/src/cctsyintegrationtestmultibearerinteroperability.cpp Tue Aug 31 16:23:08 2010 +0300 +++ b/telephonyserverplugins/common_tsy/test/integration/src/cctsyintegrationtestmultibearerinteroperability.cpp Wed Sep 01 12:40:21 2010 +0100 @@ -489,11 +489,11 @@ // Start downloading a file via HTTP. - TBuf<140> host(_L("developer.symbian.org")); - TBuf<140> page(_L("/wiki/images/1/12/Common_Design_Patterns_for_Symbian_OS_Sample_Chapter.pdf")); + TBuf<140> host(_L("developer.symbian.com")); + TBuf<140> page(_L("/main/downloads/papers/IMS_Introduction_Part_1.pdf")); CHTTPDownload* download = new (ELeave) CHTTPDownload(this); CleanupStack::PushL(download); - ASSERT_TRUE(download->StartDownloadL(host,page), _L("Download Failed - perhaps page has moved!")); + ASSERT_TRUE(download->StartDownloadL(host,page), _L("Download Failed")); // Get context info TExtEtelRequestStatus getContextInfo(packetService, EPacketGetContextInfo); @@ -800,11 +800,11 @@ ASSERT_EQUALS(dialStatus.Int(), KErrNone, _L("RCall::Dial returned with an error")); // Start downloading a file e.g. via HTTP. - TBuf<140> host(_L("developer.symbian.org")); - TBuf<140> page(_L("/wiki/images/1/12/Common_Design_Patterns_for_Symbian_OS_Sample_Chapter.pdf")); - CHTTPDownload* download = new (ELeave) CHTTPDownload(this); + TBuf<140> host(_L("developer.symbian.com")); + TBuf<140> page(_L("/main/downloads/papers/IMS_Introduction_Part_1.pdf")); + CHTTPDownload *download = new (ELeave) CHTTPDownload(this); CleanupStack::PushL(download); - ASSERT_TRUE(download->StartDownloadL(host,page), _L("Download Failed - perhaps page has moved!")); + ASSERT_TRUE(download->StartDownloadL(host,page),_L("CHTTPDownload::StartDownloadL failed")); // Verify file is downloading. ASSERT_TRUE(download->VerifyDownloading(), _L("CHTTPDownload::VerifyDownloading did not return ETrue as expected. File is not downloaded."));