diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-04-11 08:52:49 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-04-14 12:32:59 +0200 |
commit | fa1f7d27c11214b836e436b5c8cad63f3097c7ed (patch) | |
tree | f8d6ca3fee4f547a2802c53dda8aab7dabd544f6 /sax/test | |
parent | 07c60c8ee2d1465544a6a39e57bc06b3690b8dfb (diff) |
typo: attribut -> attribute
Diffstat (limited to 'sax/test')
-rw-r--r-- | sax/test/sax/testsax.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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" ); } |