From fa1f7d27c11214b836e436b5c8cad63f3097c7ed Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Fri, 11 Apr 2014 08:52:49 +0200 Subject: typo: attribut -> attribute --- sax/test/sax/testsax.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sax/test') diff --git a/sax/test/sax/testsax.cxx b/sax/test/sax/testsax.cxx index bfcf4eefdc63..fda1614ab72d 100644 --- a/sax/test/sax/testsax.cxx +++ b/sax/test/sax/testsax.cxx @@ -472,7 +472,7 @@ void OSaxParserTest::testSimple( const Reference < XParser > &rParser ) { rParser->parseStream( source ); ERROR_ASSERT( pDocHandler->m_iElementCount == 4 , "wrong element count" ); - ERROR_ASSERT( pDocHandler->m_iAttributeCount == 2 , "wrong attribut count" ); + ERROR_ASSERT( pDocHandler->m_iAttributeCount == 2 , "wrong attribute count" ); ERROR_ASSERT( pDocHandler->m_iCharCount == 130 , "wrong char count" ); ERROR_ASSERT( pDocHandler->m_iWhitespaceCount == 0, "wrong whitespace count" ); } @@ -537,7 +537,7 @@ void OSaxParserTest::testNamespaces( const Reference < XParser > &rParser ) { rParser->parseStream( source ); ERROR_ASSERT( pDocHandler->m_iElementCount == 6 , "wrong element count" ); - ERROR_ASSERT( pDocHandler->m_iAttributeCount == 2 , "wrong attribut count" ); + ERROR_ASSERT( pDocHandler->m_iAttributeCount == 2 , "wrong attribute count" ); ERROR_ASSERT( pDocHandler->m_iCharCount == 33, "wrong char count" ); ERROR_ASSERT( pDocHandler->m_iWhitespaceCount == 0 , "wrong whitespace count" ); } -- cgit