From b46b5a2a06e42f9efc379b17c51a013beb9c7e37 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. --- 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;