From 4c90d08f437291122a12130b5b795b5c5331e149 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 4 Feb 2015 17:44:57 +0000 Subject: [PATCH] Fix the expected size of the header logo on www.wxwidgets.org. The image has been updated in the website repository and online, update its expected size to reflect it and fix the unit test suite. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78448 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/uris/url.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/uris/url.cpp b/tests/uris/url.cpp index abc33dee1d..57c556c636 100644 --- a/tests/uris/url.cpp +++ b/tests/uris/url.cpp @@ -79,7 +79,7 @@ void URLTestCase::GetInputStream() wxMemoryOutputStream ostream; CPPUNIT_ASSERT(in_stream->Read(ostream).GetLastError() == wxSTREAM_EOF); - CPPUNIT_ASSERT_EQUAL(13677, ostream.GetSize()); + CPPUNIT_ASSERT_EQUAL(17334, ostream.GetSize()); // we have to delete the object created by GetInputStream() delete in_stream;