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.
This commit is contained in:
Vadim Zeitlin
2015-02-04 17:44:57 +00:00
parent 9a9ea0c295
commit b46b5a2a06

View File

@@ -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;