diff --git a/mozilla/embedding/qa/testembed/BrowserImplHistoryLstnr.cpp b/mozilla/embedding/qa/testembed/BrowserImplHistoryLstnr.cpp index 4701031294b..98d01d92dd4 100644 --- a/mozilla/embedding/qa/testembed/BrowserImplHistoryLstnr.cpp +++ b/mozilla/embedding/qa/testembed/BrowserImplHistoryLstnr.cpp @@ -141,7 +141,7 @@ NS_IMETHODIMP CBrowserImpl::OnHistoryPurge(PRInt32 theNumEntries, PRBool *notify { QAOutput("nsIHistoryListener::OnHistoryPurge()", 2); - *notify = PR_TRUE; + *notify = PR_FALSE; FormatAndPrintOutput("OnHistoryPurge() notification = ", *notify, 1); FormatAndPrintOutput("OnHistoryPurge() theNumEntries = ", theNumEntries, 2); diff --git a/mozilla/embedding/qa/testembed/nsiHistory.cpp b/mozilla/embedding/qa/testembed/nsiHistory.cpp index d5ca526fff6..9c2462ea75a 100644 --- a/mozilla/embedding/qa/testembed/nsiHistory.cpp +++ b/mozilla/embedding/qa/testembed/nsiHistory.cpp @@ -410,7 +410,7 @@ void CNsIHistory::PurgeHistoryTest(nsISHistory* theSessionHistory, PRInt32 numEn { rv = theSessionHistory->PurgeHistory(numEntries); RvTestResult(rv, "PurgeHistory() test", 2); - FormatAndPrintOutput("Number of removed entries = ", numEntries, 2); + FormatAndPrintOutput("PurgeHistory(): num requested entries for removal = ", numEntries, 2); } void CNsIHistory::RunAllHistoryEntryTests()